Sublime Forum

How to prevent ONLY single and double quotes from auto matching?

#1

ST build 4107, OSX

I’d like to turn off the auto matching for quotes ONLY. I would like brackets to auto match.

I tried adding

[
{ “keys”: ["’"], “command”: false },
{ “keys”: ["""], “command”: false },
]

to my Default (OSX).sublime-keymap (on the right hand column in the preference editor) but this does not override the internal default. I am unable to edit in the default keymap to take out the single and double quote rules.

0 Likes

#2
    { "keys": ["\""], "command": "insert", "args": {"characters": "\""} },
    { "keys": ["'"], "command": "insert", "args": {"characters": "'"} },
1 Like