blob: fda33ece8f4d54b8dcffe16cb2f33a2fc4dccff7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
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)
|