Use :norm for Vim 7.3.100 or later

Fixes #23
This commit is contained in:
Justin M. Keyes 2015-01-17 09:55:08 -05:00
parent 5eba0f19c8
commit 193f4866df

View File

@ -88,11 +88,19 @@ function! repeat#run(count)
let c = g:repeat_count
let s = g:repeat_sequence
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
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
call feedkeys((a:count ? a:count : '') . '.', 'n')
endif
endif
endfunction
function! repeat#wrap(command,count)