Skip to content

Commit

Permalink
Use 0/1 instead of v:true/v:false for compatibility with older vim
Browse files Browse the repository at this point in the history
versions.
  • Loading branch information
caojoshua authored and airblade committed Jul 12, 2021
1 parent aad6ace commit ca0f292
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugin/gitgutter.vim
Original file line number Diff line number Diff line change
Expand Up @@ -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)

" }}}

Expand Down

0 comments on commit ca0f292

Please sign in to comment.