如何禁用自动引用功能?
当我点击'或'键时,我不想让它自动在任何地方插入另一个。无论它们多么聪明,它都会让我觉得“不可预测”并让我分心我的注意力我试图做。
我输入的速度超过100,我真的不需要帮助点击'或'键。
我尝试过以下设置,但都没有禁用此不良行为:
{
"editor.autoClosingBrackets": false,
"editor.wordWrap": "off",
"html.autoClosingTags": false,
"editor.formatOnType": false,
"editor.suggestOnTriggerCharacters": false,
"editor.acceptSuggestionOnEnter": "off",
}
答案 0 :(得分:7)
将其放入您的用户设置:
"editor.autoClosingQuotes": "never"
答案 1 :(得分:2)
修改:来自vscode 1.27.0
"editor.autoClosingQuotes": "never",
我猜你可以像这样“键入”它们(keybindings.json
):
{
"key": "'",
"command": "editor.action.insertSnippet",
"args": {
"snippet": "'"
},
"when": "editorTextFocus && !editorReadonly"
},
答案 2 :(得分:1)