Merge pull request #37 from justinmk/fix703

Fix condition for Vim <= 7.3
This commit is contained in:
Tim Pope 2015-01-19 16:20:08 -06:00
commit bd3b517235

View File

@ -91,14 +91,14 @@ function! repeat#run(count)
let cnt = c == -1 ? "" : (a:count ? a:count : (c ? c : ''))
if (v:version > 703 || (v:version == 703 && has('patch100')))
exe 'norm ' . r . cnt . s
elseif
else
call feedkeys(r . cnt, 'n')
call feedkeys(s)
endif
else
if (v:version > 703 || (v:version == 703 && has('patch100')))
exe 'norm! '.(a:count ? a:count : '') . '.'
elseif
else
call feedkeys((a:count ? a:count : '') . '.', 'n')
endif
endif