From ca0f292e68f7699e4eda9412e310eb8d21d4571e Mon Sep 17 00:00:00 2001 From: caojoshua Date: Wed, 7 Jul 2021 20:39:11 -0700 Subject: [PATCH] Use 0/1 instead of v:true/v:false for compatibility with older vim versions. --- plugin/gitgutter.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/gitgutter.vim b/plugin/gitgutter.vim index ef5c8e6..915c83f 100644 --- a/plugin/gitgutter.vim +++ b/plugin/gitgutter.vim @@ -118,8 +118,8 @@ command! -bar GitGutterBufferDisable call gitgutter#buffer_disable() command! -bar GitGutterBufferEnable call gitgutter#buffer_enable() command! -bar GitGutterBufferToggle call gitgutter#buffer_toggle() -command! -bar GitGutterQuickFix call gitgutter#quickfix(v:false) -command! -bar GitGutterQuickFixCurrentFile call gitgutter#quickfix(v:true) +command! -bar GitGutterQuickFix call gitgutter#quickfix(0) +command! -bar GitGutterQuickFixCurrentFile call gitgutter#quickfix(1) " }}}