Is there any way to add "
to matching pairs? I tried doing this:
set-option -add global matching_pairs '"' '"'
But pressing m
with cursor on "
doesn’t select to the next match.
Is there any way to add "
to matching pairs? I tried doing this:
set-option -add global matching_pairs '"' '"'
But pressing m
with cursor on "
doesn’t select to the next match.
You can use <a-i>"
or <a-a>"
to select inside quotes or including quotes. m
key is a bit tricker, since it takes into account nesting and you can’t really do this for quotes
OK that makes sense. Thank you!