Close empty pairs smartly

This commit is contained in:
Hana Shiro 2017-02-21 23:53:29 +08:00
parent f0019fc642
commit 404a121b04

View File

@ -129,12 +129,23 @@ function! AutoPairsInsert(key)
return s:Right return s:Right
end end
if !g:AutoPairsFlyMode " Skip the character if closed pair is next character
" Skip the character if next character is space if current_char == ' ' && next_char == a:key
if current_char == ' ' && next_char == a:key " Remove the space we added if the pair is empty
return s:Right.s:Right if has_key(b:AutoPairsClosedPairs, a:key)
end let end_of_prevchar_index = matchend(before, '\S\ze\s*$')
if end_of_prevchar_index > -1
let end_of_prevchar = get(prev_chars, end_of_prevchar_index-1, '')
if end_of_prevchar == b:AutoPairsClosedPairs[a:key]
return "\<DEL>".s:Right
endif
endif
endif
return s:Right.s:Right
endif
if !g:AutoPairsFlyMode
" Skip the character if closed pair is next character " Skip the character if closed pair is next character
if current_char == '' if current_char == ''
if g:AutoPairsMultilineClose if g:AutoPairsMultilineClose