I’m using ST3 to write code in Scheme, which heavily relies both on pairs of parentheses and unpaired single quotes. Having autopaired parentheses is essential, but the autopaired quotes is really frustrating. I see the auto_match_enabled setting in the documentation, but that seems to turn both off. Is there a way I can adjust the auto-pair settings for individual types? Can I apply this only to a particular language?
A way to autopair brackets but not quotes?
iamntz
#2
Add this to your Keymap file:
{ "keys": "\""], "command": "insert_snippet", "args": {"contents": "\""} }
(repeat for each character you want unpaired)
0 Likes
freyus
#3
[quote=“iamntz”]Add this to your Keymap file:
{ "keys": "\""], "command": "insert_snippet", "args": {"contents": "\""} }
(repeat for each character you want unpaired)[/quote]
Iamntz thanks, exactly what I was looking for!
0 Likes