From b1d5c00d5f6d3136e5dae74478369f5a770bb237 Mon Sep 17 00:00:00 2001 From: Matt Hamilton Date: Wed, 28 Sep 2016 04:32:17 -0700 Subject: [PATCH] [git] fix 'ggL' alias typo Credit to @toogley for discovering the typo here: https://github.com/sorin-ionescu/prezto/pull/1157 Since zim and prezto share the same git aliases, it is applicable here as well. --- modules/git/init.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/git/init.zsh b/modules/git/init.zsh index e65d176..e03cb7b 100644 --- a/modules/git/init.zsh +++ b/modules/git/init.zsh @@ -77,7 +77,7 @@ alias gfu='git remote update -p; git merge --ff-only @\{u\}' alias gg='git grep' alias ggi='git grep --ignore-case' alias ggl='git grep --files-with-matches' -alias ggL='git grep --files-without-matches' +alias ggL='git grep --files-without-match' alias ggv='git grep --invert-match' alias ggw='git grep --word-regexp'