diff --git a/plugin/surround.vim b/plugin/surround.vim index 0891eac..9e94d39 100644 --- a/plugin/surround.vim +++ b/plugin/surround.vim @@ -547,7 +547,6 @@ nnoremap YSsurround :call opfunc2(v:count1) " discards the numerical argument but there's not much we can do with it nnoremap Ysurround :set opfunc=opfuncg@ nnoremap YSurround :set opfunc=opfunc2g@ -vnoremap Vsurround :call opfunc(visualmode()) vnoremap VSurround :call opfunc(visualmode(),visualmode() ==# 'V' ? 1 : 0) vnoremap VgSurround :call opfunc(visualmode(),visualmode() ==# 'V' ? 0 : 1) inoremap Isurround =insert() @@ -561,13 +560,6 @@ if !exists("g:surround_no_mappings") || ! g:surround_no_mappings nmap yss Yssurround nmap ySs YSsurround nmap ySS YSsurround - if !hasmapto("Vsurround","v") && !hasmapto("VSurround","v") - if exists(":xmap") - xmap s Vsurround - else - vmap s Vsurround - endif - endif if !hasmapto("VSurround","v") if exists(":xmap") xmap S VSurround