From e573b3020c032400eed60b649a2cbf55266e6bb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Thu, 30 Jun 2016 16:03:25 +0200 Subject: Add current configurations from old repository --- vim/bundle/vim-gitgutter/test/helper.vim | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 vim/bundle/vim-gitgutter/test/helper.vim (limited to 'vim/bundle/vim-gitgutter/test/helper.vim') diff --git a/vim/bundle/vim-gitgutter/test/helper.vim b/vim/bundle/vim-gitgutter/test/helper.vim new file mode 100644 index 0000000..aaccf39 --- /dev/null +++ b/vim/bundle/vim-gitgutter/test/helper.vim @@ -0,0 +1,27 @@ +set runtimepath+=../ +source ../plugin/gitgutter.vim + +function! Setup() + edit! fixture.txt + sign unplace * +endfunction + +function! DumpSigns(filename) + execute 'redir! > ' a:filename.'.actual' + silent execute 'sign place' + redir END +endfunction + +function! DumpGitDiff(filename) + call system('git diff fixture.txt > '.a:filename.'.actual') +endfunction + +function! DumpGitDiffStaged(filename) + call system('git diff --staged fixture.txt > '.a:filename.'.actual') +endfunction + +function! Dump(text, filename) + let msg = type(a:text) == 1 ? split(a:text, '\n') : a:text + call writefile(msg, a:filename.'.actual', 'a') +endfunction + -- cgit v1.2.3