From 2982312bae6ef18f58aa5271ce2866e63409c13c Mon Sep 17 00:00:00 2001 From: Miao Jiang Date: Sat, 2 Mar 2013 19:06:01 +0800 Subject: [PATCH] fixes #35: Fast Wrap incorrect. (|)p[i] to (p[)i] should be (p[i]) --- plugin/auto-pairs.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/auto-pairs.vim b/plugin/auto-pairs.vim index 633a589..8072e53 100644 --- a/plugin/auto-pairs.vim +++ b/plugin/auto-pairs.vim @@ -267,7 +267,7 @@ function! AutoPairsFastWrap() end return "\".inputed_close_pair."\" else - normal e + normal he return "\".current_char."\" end endfunction