From cfbbc888cf46b33e980461f773d8606810d8d465 Mon Sep 17 00:00:00 2001 From: "jiangfriend@gmail.com" Date: Mon, 13 Jun 2011 18:13:01 +0800 Subject: [PATCH] fix indent incorrect after {\} --- 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 1d1eeb9..f40d29c 100644 --- a/plugin/auto-pairs.vim +++ b/plugin/auto-pairs.vim @@ -164,7 +164,7 @@ function! AutoPairsReturn() let cur_char = line[col('.')-1] if has_key(g:AutoPairs, prev_char) && g:AutoPairs[prev_char] == cur_char if g:AutoPairsCenterLine && winline() * 1.5 >= winheight(0) - let cmd = ";\zz\" + let cmd = " \zz\cl" end return "\\O".cmd end