Sublime - 从搜索结果中删除.cache文件

时间:2017-06-22 18:14:01

标签: sublimetext2 sublimetext3 sublimetext

我在sublime中使用command-shift-f函数来grep我的存储库。但是,总有很长的,缩小的.cache文件会显示出来,因为它们会自动生成,因此无法更改。

有没有办法阻止sublime搜索或隐藏这些.cache文件的搜索结果?

1 个答案:

答案 0 :(得分:3)

如果您查看首选项菜单 - >设置,您可以在左侧的默认Preferences.sublime-preferences文件中找到:

// 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"],

您只需将其复制到右侧的用户首选项,然后添加, "*.cachebefore the] and。缓存`文件将不再被搜索,因为它们将被视为如果它们是不值得搜索的二进制文件。