plugins - Added and configured vim-gitgutter

This commit is contained in:
Emmanuel BENOîT 2023-06-18 16:56:02 +02:00
parent 46f9922bbd
commit 64ae9ae009
No known key found for this signature in database
GPG key ID: 2356DC6956CF54EF
5 changed files with 31 additions and 4 deletions

View file

@ -1,3 +1,6 @@
" Toggle, open or close the quickfix window. The first argument is the size
" (0 for automatic), and the second argument, if present, determines which
" action to perform: 0 forces the window closed, 1 opens it, and 2 toggles it.
function! ToggleQuickfix(size, ...)
let l:mode = (a:0 == 0)? 2 : (a:1)
function! s:WindowCheck(mode)