vscode文本编辑器设置-手动配置语言列表

时间:2018-11-08 08:44:46

标签: configuration visual-studio-code editor vscode-settings

.csv中打开vscode文件时,我想自动关闭它们的括号。给定以下用户设置...

{
    "editor.autoSurround": "languageDefined"
    ...
    "editor.autoClosingQuotes": "languageDefined"
}

...有一个用户配置,我可以在其中添加或删除语言模式,以将autoClosingQuotes设置应用于而无需,将其启用为 all 语言模式?

1 个答案:

答案 0 :(得分:1)

您想要的称为“特定于语言的设置”。参见using language-specific settings in vscodedocumentation for same

在您的情况下:

"editor.autoClosingBrackets": "never",

"[plaintext]": {
  "editor.autoClosingQuotes": "languageDefined"
}

您可以使用这些设置来实现所需的设置。首先,我将所有语言都设置为never,然后仅对plaintext启用它。

为什么我在上面使用[plaintext]?因为在浏览选项( Ctrl - Shift - P 并搜索“配置特定于语言的设置”时,没有{{ 1}}的选择。我认为纯文本与您将要获得的文本非常接近。