fixes #35: Fast Wrap incorrect.

(|)p[i] to (p[)i]
should be (p[i])
This commit is contained in:
Miao Jiang 2013-03-02 19:06:01 +08:00
parent f6a18ca775
commit 2982312bae

View File

@ -267,7 +267,7 @@ function! AutoPairsFastWrap()
end end
return "\<RIGHT>".inputed_close_pair."\<LEFT>" return "\<RIGHT>".inputed_close_pair."\<LEFT>"
else else
normal e normal he
return "\<RIGHT>".current_char."\<LEFT>" return "\<RIGHT>".current_char."\<LEFT>"
end end
endfunction endfunction