From 7e8f414b8cc0adccdb5a68e5fa5e6e1eb657c68d Mon Sep 17 00:00:00 2001 From: Joshua Priddle Date: Wed, 4 Feb 2015 17:49:38 -0500 Subject: [PATCH] Fix typo in `repeat#set` call --- plugin/surround.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/surround.vim b/plugin/surround.vim index e283ed2..b9ca23a 100644 --- a/plugin/surround.vim +++ b/plugin/surround.vim @@ -457,7 +457,7 @@ function! s:dosurround(...) " {{{1 if newchar == "" silent! call repeat#set("\Dsurround".char,scount) else - silent! call repeat#set("\C".(a:0 > 2 && a:3 ? "S" : "s")."urround".char.newchar.s:inpur,scount) + silent! call repeat#set("\C".(a:0 > 2 && a:3 ? "S" : "s")."urround".char.newchar.s:input,scount) endif endfunction " }}}1