From 71179c2e6711f8cbaf860c4890b8cf936c2f1a0f Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Thu, 6 Dec 2018 18:09:02 -0500 Subject: [PATCH] fish: Remove git grep abbreviation As cool as "gg" is to type, I never used git grep since ripgrep works just as great (and is almost always easier to read as well). --- fish/.config/fish/config.fish | 1 - 1 file changed, 1 deletion(-) diff --git a/fish/.config/fish/config.fish b/fish/.config/fish/config.fish index 9b36cc26..76a2ba6b 100644 --- a/fish/.config/fish/config.fish +++ b/fish/.config/fish/config.fish @@ -46,7 +46,6 @@ if not set -q set_abbr abbr gco "git checkout" abbr gd "git diff" # Show all file changes not staged yet abbr gds "git diff --staged" # Show changes staged but not committed - abbr gg "git grep" abbr gi "git init" abbr gl "git log --oneline --decorate --all --graph -n 10" abbr gm "git merge"