我想在搜索文件名时忽略 node_modules 文件夹中的任何内容。我试过:
在首选项 > 包控制 > 包设置 > 用户 - 设置中我包括:
"folder_exclude_patterns": ["*node_modules*"],
"file_exclude_patterns": ["*node_modules*"],
Run Code Online (Sandbox Code Playgroud)
然而,当我执行 cmd + p 并在 node_modules 中搜索文件时,Sublime 搜索......
rfr*_*tag 19
Sublime 3 改变了语法。您需要删除通配符星号。
转到首选项> 设置并更新用户设置,如下所示:
{
"folder_exclude_patterns": ["node_modules"]
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
4440 次 |
| 最近记录: |