Skip to content

Commit ca0f292

Browse files
caojoshuaairblade
authored andcommitted
Use 0/1 instead of v:true/v:false for compatibility with older vim
versions.
1 parent aad6ace commit ca0f292

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugin/gitgutter.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,8 @@ command! -bar GitGutterBufferDisable call gitgutter#buffer_disable()
118118
command! -bar GitGutterBufferEnable call gitgutter#buffer_enable()
119119
command! -bar GitGutterBufferToggle call gitgutter#buffer_toggle()
120120

121-
command! -bar GitGutterQuickFix call gitgutter#quickfix(v:false)
122-
command! -bar GitGutterQuickFixCurrentFile call gitgutter#quickfix(v:true)
121+
command! -bar GitGutterQuickFix call gitgutter#quickfix(0)
122+
command! -bar GitGutterQuickFixCurrentFile call gitgutter#quickfix(1)
123123

124124
" }}}
125125

0 commit comments

Comments
 (0)