Fix condition for Vim <= 7.3
This commit is contained in:
parent
7f09c18d2e
commit
006694e0f5
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user