Skip to content

Commit

Permalink
Fixed issue#4
Browse files Browse the repository at this point in the history
  • Loading branch information
mbbill committed Aug 26, 2012
1 parent ce7504b commit 4ad199e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions plugin/undotree.vim
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@
" TODO support horizontal split.
" TODO Clear history from current seq.

" At least version 7.0 is needed for undo branches.
if v:version < 700
" At least version 7.3 with 005 patch is needed for undo branches.
" Refer to https://github.com/mbbill/undotree/issues/4 for details.
" Thanks kien
if !(v:version >= 703 && has("patch005"))
finish
endif

Expand Down

0 comments on commit 4ad199e

Please sign in to comment.