You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
g:AutoPairsShortcutFastWrap
Default: '<M-e>'
Fast wrap the word. all pairs will be consider as a block (include <>).
(|)'hello' after fast wrap at |, the word will be ('hello')
(|)<hello> after fast wrap at |, the word will be (<hello>)
for me the M- never works in my terminal (mintty)
so I did this:
let g:AutoPairsShortcutFastWrap = '<C-e>'
and it works.
but I'm expecting it also works for """, when I press """, I got """|""", this is good.
now let's say I already have abc, and
I move my cursor to |abc, and
I press """|abc, and
I got """|"""abc
so far, so good.
now, I want to make the closing """ to include abc, like this """abc"""
I press C-e, I only move my cursor to """"""|abc,
I press C-e again, I only got """""abc"
so how to make my C-e to work for """ also?
The text was updated successfully, but these errors were encountered:
for me the M- never works in my terminal (mintty)
so I did this:
and it works.
but I'm expecting it also works for """, when I press """, I got """|""", this is good.
abc
, and|abc
, and"""|abc
, and"""|"""abc
so far, so good.
now, I want to make the closing
"""
to includeabc
, like this"""abc"""
I press C-e, I only move my cursor to
""""""|abc
,I press C-e again, I only got
"""""abc"
so how to make my C-e to work for
"""
also?The text was updated successfully, but these errors were encountered: