我需要在侧边栏中使用node_modules,但在搜索文件时却不需要“转到文件”。
如果我使用
{
"folder_exclude_patterns": [ "node_modules"]
}
除侧边栏外,它的工作正常。
答案 0 :(得分:30)
Sublime text - >偏好 - >设置 - >打开一个新窗口,其左侧是所有程序设置,右侧是您的用户设置。您可以在{}括号 -
之间添加此行"binary_file_patterns": [".svn/", ".git/", "node_modules/", "bower_components/"]
答案 1 :(得分:8)
你需要这个设置``binary_file_pattern:
// These files will still show up in the side bar, but won't be included in
// Goto Anything or Find in Files
"binary_file_patterns": ["*.jpg", "*.jpeg", "*.png", "*.gif", "*.ttf", "*.tga", "*.dds", "*.ico", "*.eot", "*.pdf", "*.swf", "*.jar", "*.zip"],
您也可以使用:
// index_exclude_patterns indicate which files won't be indexed.
"index_exclude_patterns": ["*.log"],
它会在侧边栏中显示,但会从任何索引中删除它。
您也可以尝试使用此插件:https://github.com/titoBouzout/SideBarFolders
对于一些用户..(我:P),ST项目系统太多了......我只是 希望能够在不保存或跟踪项目的情况下切换文件夹 文件,并保持标签完整..好吧,这个包就是这样。