From 25f59364dbfe9178b785b810ac83e5a1e750b3b5 Mon Sep 17 00:00:00 2001 From: Alex Padgett Date: Fri, 2 Mar 2012 10:29:25 -0500 Subject: [PATCH] Enable repeat with tags for cst --- plugin/surround.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/surround.vim b/plugin/surround.vim index 0810a16..fd49268 100644 --- a/plugin/surround.vim +++ b/plugin/surround.vim @@ -435,7 +435,7 @@ function! s:dosurround(...) " {{{1 if newchar == "" silent! call repeat#set("\Dsurround".char,scount) else - silent! call repeat#set("\Csurround".char.newchar,scount) + silent! call repeat#set("\Csurround".char.newchar.s:tag,scount) endif endfunction " }}}1