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

时间:2016-05-20 08:48:45

标签: shell visual-studio-code file-association

在Visual Studio代码中,我尝试将*.install(即扩展名为.install的文件)和PKGBUILD文件与shell脚本语法高亮关联,使用:

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

但它没有工作(对于文件名/扩展名),也就是说,文件名/扩展名都没有从shell获得语法高亮。在查看了shellscript包的源代码(https://github.com/Microsoft/vscode/blob/master/extensions/shellscript/package.json)后,我尝试使用shell更改shell-script / shellscript

1 个答案:

答案 0 :(得分:1)

你错过了" s" in" files":

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

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