Ya *_*sha 7 indexing sublimetext3
我最近开始使用Sublime Text 3,我遇到了一个小问题,让我感到厌烦node_modules,bower_components即使我在用户设置中排除它们之后甚至在我们将索引文件保存到索引之后:
{
"color_scheme": "Packages/1337 Color Scheme/1337.tmTheme",
"ignored_packages":
[
"Vintage"
],
"binary_file_patterns": [".idea/*", "bower_components/*", "node_modules/*"],
"index_files": true,
"index_exclude_patterns": [".idea/*", "bower_components/*", "node_modules/*"],
}
Run Code Online (Sandbox Code Playgroud)
上面的配置删除了排除的文件夹,Goto Anything但我仍然可以在这些文件夹下的文件中找到文本Find in Folder...,请咨询.
另一个问题,如何重置崇高文本中的索引.
尝试**代替*(以匹配子目录),例如
"binary_file_patterns": [".idea/**", "bower_components/**", "node_modules/**"],
Run Code Online (Sandbox Code Playgroud)
在ST3 build 3114中为我工作