mirror of
https://github.com/airblade/vim-gitgutter.git
synced 2025-11-09 12:03:48 -05:00
9 lines
176 B
VimL
9 lines
176 B
VimL
source helper.vim
|
|
|
|
let tmpfile = 'untrackedFileWithinRepo.tmp'
|
|
call system('touch '.tmpfile)
|
|
edit tmpfile
|
|
call DumpSigns('untrackedFileWithinRepo')
|
|
|
|
call system('rm '.tmpfile)
|