From f6830ee765acd0a21821c95d2ed913b5edf0239a Mon Sep 17 00:00:00 2001 From: Jaehwang Jerry Jung Date: Wed, 2 Oct 2019 22:26:15 +0900 Subject: [PATCH] fix AutoPairsFastWrap: remove wrong `\` inside `[]` --- 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 af5eb32..8745397 100644 --- a/plugin/auto-pairs.vim +++ b/plugin/auto-pairs.vim @@ -338,7 +338,7 @@ func! AutoPairsFastWrap() let c = @" normal! x let [before, after, ig] = s:getline() - if after[0] =~ '\v[\{\[\(\<]' + if after[0] =~ '\v[{[(<]' normal! % normal! p else