File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -393,7 +393,7 @@ function! s:dosurround(...) " {{{1
393393 endif
394394 exe ' norm! dt' .char
395395 else
396- exe ' norm! d' .strcount.' i' .char
396+ exe ' norm d' .strcount.' i' .char
397397 endif
398398 let keeper = getreg (' "' )
399399 let okeeper = keeper " for reindent below
@@ -422,7 +422,7 @@ function! s:dosurround(...) " {{{1
422422 else
423423 " One character backwards
424424 call search (' \m.' , ' bW' )
425- exe " norm! da" .char
425+ exe " norm da" .char
426426 endif
427427 let removed = getreg (' "' )
428428 let rem2 = substitute (removed,' \n.*' ,' ' ,' ' )
@@ -492,7 +492,7 @@ function! s:opfunc(type,...) " {{{1
492492 let reg_type = getregtype (reg )
493493 let type = a: type
494494 if a: type == " char"
495- silent exe ' norm! v`[o`]"' .reg .' y'
495+ silent exe ' norm v`[o`]"' .reg .' y'
496496 let type = ' v'
497497 elseif a: type == " line"
498498 silent exe ' norm! `[V`]"' .reg .' y'
You can’t perform that action at this time.
0 commit comments