From 67477adc1b1ed874de2464b3ebaeb75eee66cfe9 Mon Sep 17 00:00:00 2001 From: DarkWiiPlayer Date: Tue, 24 Oct 2023 16:45:58 +0200 Subject: [PATCH] Make :GitDiff vim command disable list --- vim/plugin/git.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim/plugin/git.vim b/vim/plugin/git.vim index 00303be..282c8b9 100644 --- a/vim/plugin/git.vim +++ b/vim/plugin/git.vim @@ -271,6 +271,6 @@ command! ShowGitRoot try \| echo gitroot() \| catch | echo 'Not a git repository' \| endtry -command! GitDiff diffthis | vert bel split | exec "silent GitPrev" | diffthis +command! GitDiff set nolist | diffthis | vert bel split | exec "silent GitPrev" | set nolist | diffthis augroup END