mirror of
https://github.com/airblade/vim-gitgutter.git
synced 2025-11-08 11:33:48 -05:00
11 lines
190 B
VimL
11 lines
190 B
VimL
source helper.vim
|
|
|
|
let tmpfile = 'symlink'
|
|
call system('ln -nfs fixture.txt '.tmpfile)
|
|
execute 'edit '.tmpfile
|
|
execute '6d'
|
|
write
|
|
call DumpSigns('followSymlink')
|
|
|
|
call system('rm '.tmpfile)
|