Restore previous changes

This commit is contained in:
Michael Quinn 2019-07-30 16:46:16 -07:00
parent 78da0fc9c4
commit 79ce878884

View File

@ -208,8 +208,8 @@ func! AutoPairsInsert(key)
let [before, after, afterline] = s:getline()
" Ignore auto close if prev character is \
if before[-1:-1] == '\'
" Ignore auto close if prev character is in g:AutoPairsIgnoreCharacters
if index(g:AutoPairsIgnoreCharacters, prev_char) != -1
return a:key
end