如何限制 Sublime Text 2/3 中侧边栏显示的文件夹子文件夹?

如何限制 Sublime Text 2/3 中侧边栏显示的文件夹子文件夹?

我可以使用项目设置中数组内的不同路径选择我想要处理的文件夹folders。但是如果我只需要文件夹中的几个文件夹怎么办templates?我不想看到其他文件夹。如何执行此限制?

现在有这样的事情:

"folders":
[
    {
        "path": "templates"
    },
    {
        "path": "js"
    }
]

templates例如,在文件夹中,存在文件夹users。我需要限制应从那里显示的目录。 folder_exclude_patterns: ['users/one', 'users/two']对我不起作用。

答案1

在 folder_exclude_pattern 选项下写入您不想看到的文件夹名称。

"folders":
[
    {
        "path": "templates",
        "folder_exclude_patterns": [
            "i_dont_want_this_folder",
            "and this folder",
            "i_want_this/but not this"
        ]
    },
    {
        "path": "js"
    }
]

相关内容