Visual Studio代码禁用自动引用

时间:2018-02-09 21:25:12

标签: visual-studio-code

如何禁用自动引用功能?

当我点击'或'键时,我不想让它自动在任何地方插入另一个。无论它们多么聪明,它都会让我觉得“不可预测”并让我分心我的注意力我试图做。

我输入的速度超过100,我真的不需要帮助点击'或'键。

我尝试过以下设置,但都没有禁用此不良行为:

{
    "editor.autoClosingBrackets": false,
    "editor.wordWrap": "off",
    "html.autoClosingTags": false,
    "editor.formatOnType": false,
    "editor.suggestOnTriggerCharacters": false,
    "editor.acceptSuggestionOnEnter": "off",
}

3 个答案:

答案 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)

这是一个GUI-如何更改它:

  1. 打开“设置”对话框:
    • Strg + ,或用鼠标导航至File | Settings
  2. 更改以下值:
    • editor.autoClosingQuotes到所需的never
  3. 就这样,无需执行第3步-只批准我的屏幕快照-答案。

Change Setting via the GUI