From 7d8f5919b96b72a600b6ec49a6cb8a6baeeadf8b Mon Sep 17 00:00:00 2001 From: Tobias Angele Date: Sun, 19 Jun 2016 14:48:24 +0200 Subject: [PATCH] fixed typo in git module To cite from https://git-scm.com/docs/git-grep : git grep [-a | --text] [-I] [--textconv] [-i | --ignore-case] [-w | --word-regexp] [-l | --files-with-matches] **[-L | --files-without-match]** --- modules/git/alias.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/git/alias.zsh b/modules/git/alias.zsh index ffa854dd..fe971d00 100644 --- a/modules/git/alias.zsh +++ b/modules/git/alias.zsh @@ -84,7 +84,7 @@ alias gfr='git pull --rebase' 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'