Visual Studio Code disable auto-quote
Edit: from vscode 1.27.0
"editor.autoClosingQuotes": "never", "editor.autoSurround": "never",// When the word is selected
I guess you can "type" them instead like this (keybindings.json
):
{
"key": "'",
"command": "editor.action.insertSnippet",
"args": {
"snippet": "'"
},
"when": "editorTextFocus && !editorReadonly"
},
Put this in your user settings:
"editor.autoClosingQuotes": "never"