如何在 VS Code 中关闭 .txt 文件的自动完成功能?

How can I turn off auto-complete for .txt files in VS Code?

我在 VS Code 中有一个 .txt 文件。我用它来输入纯文本。

提示自动补全。我想为其他文件保持自动完成功能,例如 Python 文件。

我想在 VS Code 中关闭仅针对 .txt 文件的自动完成建议。这可能吗?

像这样进行 language-specific 设置(在您的 settings.json 中):

"[plaintext]": {
  "editor.quickSuggestions": {
    "other": false,
    "comments": false,
    "strings": false
  }
}

因此,您不应在 .txt 文件中自动获取建议,如果需要,您仍然可以通过 Ctrl+[ 手动触发它们=22=].