From 64659705303bfb654cce7b5890a8d8e91e4f5977 Mon Sep 17 00:00:00 2001 From: Oskar Grunning Date: Thu, 15 Feb 2018 18:44:13 +0100 Subject: [PATCH] [git] Repair gCl alias The no-pager option should be set on `git` and not `git diff`. Closes #246 --- 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 d53082d..dce0ccb 100644 --- a/modules/git/init.zsh +++ b/modules/git/init.zsh @@ -50,7 +50,7 @@ alias gcS='git commit -S' alias gpS='git show --pretty=short --show-signature' # Conflict (C) -alias gCl='git diff --diff-filter=U --name-only --no-pager' +alias gCl='git --no-pager diff --diff-filter=U --name-only' alias gCa='git add $(gCl)' alias gCe='git mergetool $(gCl)' alias gCo='git checkout --ours --'