aboutsummaryrefslogtreecommitdiff
path: root/vim/bundle/vim-gitgutter/test/testUntrackedFileWithinRepo.vim
blob: 4fdd48ef8aafc270cb61b1d1fd2023b487475764 (plain)
1
2
3
4
5
6
7
8
9
10
source helper.vim

let tmpfile = 'untrackedFileWithinRepo.tmp'
call system('touch '.tmpfile)
execute 'edit '.tmpfile
normal ggo*
doautocmd CursorHold
call DumpSigns('untrackedFileWithinRepo')

call system('rm '.tmpfile)