在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
。
答案 0 :(得分:1)
你错过了" s" in" files":
{
"files.associations": {
"PKGBUILD": "shellscript",
"*.install": "shellscript",
"*.desktop": "ini"
}
}
更正设置后,您可以使用您链接的文件中的任何别名https://github.com/Microsoft/vscode/blob/master/extensions/shellscript/package.json