From 09fd529c7acf02120c8ca2efd20dc6f4cfcd5e79 Mon Sep 17 00:00:00 2001 From: Alex Padgett Date: Fri, 2 Mar 2012 09:45:03 -0500 Subject: [PATCH] Add tag to the end of repeat message --- plugin/surround.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/surround.vim b/plugin/surround.vim index 8eee147..c28ed76 100644 --- a/plugin/surround.vim +++ b/plugin/surround.vim @@ -507,7 +507,7 @@ function! s:opfunc(type,...) " {{{1 let &selection = sel_save let &clipboard = cb_save if a:type =~ '^\d\+$' - silent! call repeat#set("\Y".(a:0 && a:1 ? "S" : "s")."surround".char,a:type) + silent! call repeat#set("\Y".(a:0 && a:1 ? "S" : "s")."surround".char.s:tag,a:type) endif endfunction