如何将 .install 文件扩展名和 PKGBUILD 文件名与 VSCode 中的 shell 脚本相关联?

How to associate .install file extension and PKGBUILD file name with shell scripts in VSCode?

在 Visual Studio 代码中,我尝试将 *.install(即扩展名为 .install 的文件)和具有 shell 脚本语法突出显示的 PKGBUILD 文件相关联,使用:

// Place your settings in this file to overwrite the default settings
{
    "file.associations": {
        "PKGBUILD": "shell",
        "*.install": "shell-script",
        "*.desktop": "ini"
    }
}

但它没有工作(对于任一文件 name/extension),也就是说,两个文件 name/extension 都没有从 shell 获得语法高亮显示。在查看 shellscript 包的源代码 (https://github.com/Microsoft/vscode/blob/master/extensions/shellscript/package.json) 之后,我尝试将 shell/shell-script 更改为 shellscript

您在 "files" 中缺少 "s":

{
    "files.associations": {
        "PKGBUILD": "shellscript",
        "*.install": "shellscript",
        "*.desktop": "ini"
    }
}

更正设置后,您可以在链接的文件中使用任何别名https://github.com/Microsoft/vscode/blob/master/extensions/shellscript/package.json