VSCode files.associations

时间:2018-04-12 20:52:58

标签: visual-studio-code

我项目的子文件夹中有一些.txt个文件,其中包含SQL代码。我希望SQL语法突出显示,所以我将其添加到我的 workspace 文件夹设置中:

{
    "files.associations": {
        "**/somefolder/*.txt": "sql" 
    }
}

当文件夹名称前面有两颗星时,这种方法有效。但somefolder实际上是我项目根目录下的文件夹。

为什么我不能像somefolder/**/*.txt一样编写glob?

1 个答案:

答案 0 :(得分:0)

似乎新版本的VSCode要求您一开始使用**,无论如何:

{
    "files.associations": {
        "**/somefolder/**/*.txt": "sql" 
    }
}

应该可以