Fix condition for Vim <= 7.3

This commit is contained in:
Justin M. Keyes 2015-01-19 17:09:05 -05:00
parent 7f09c18d2e
commit 006694e0f5

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