Files
vim-gitgutter/test/testHunkUndoNearbyHunk.vim
Andy Stewart b3db866aab Use "undo" instead of "revert" for discarding a hunk.
"Undo" is a better name than "revert" because:

- "revert" sounds like it has something to do with `git-revert` but they
  are entirely different;
- "undo" is consistent with vim's "undo": discarding changes and going
  back to the original.

Maintain backwards compatibility and add deprecation warnings.

Closes #306.
2016-04-21 11:40:27 +01:00

10 lines
196 B
VimL

source helper.vim
call Setup()
execute "normal! 2Gox\<CR>y\<CR>z"
normal 2jdd
normal k
execute 'GitGutterUndoHunk'
call DumpSigns('hunkUndoNearbySigns')
call DumpGitDiff('hunkUndoNearbyGitDiff')