Lea*_*xxx 17 search sublimetext sublimetext3
我正在使用sublime text 3,我想排除文件/目录,但不在我的侧边栏中.
例如...
我有这些文件:
因此,使用Ctrl + P(查找文件)并编写"事件 ",我只想看到/app/event.rb.
并且,使用Ctrl + Shift + F(在所有文件中查找)并编写"内容"我想再次查看结果,仅适用于/app/event.rb
我将这个值的sublime配置到我的Preferences.sublime-settings中:
"folder_exclude_patterns": ["doc"],
Run Code Online (Sandbox Code Playgroud)
这很好用,但它也隐藏了侧边栏的doc目录.我不想要这种行为.我只想隐藏搜索中的文件
小智 19
对我来说,binary_file_patterns当我在project.sublime-project文件中进行设置时,使用Sublime 3 build 3083 无效.一旦我将它移动到我的Preferences.sublime-settings并在搜索中添加了'*',它就会开始从搜索结果中排除该文件夹,同时将其留在侧边栏中.我的Preferences.sublime-settings看起来像这样:
"binary_file_patterns":
[
"public/bower_components/*",
"public/javascripts/vendor/*",
"public-built/*"
],
Run Code Online (Sandbox Code Playgroud)
它在崇高的3中为我精美地工作.
在这篇文章中也谈过:http: //blog.lysender.com/2014/08/sublime-text-exclude-files-or-directories-from-go-to-anything-feature/