2013-02-27 69 views
2

當我按CTRL + P時,我想避免建議的文件的特定文件夾(doc /在我的情況)。
有沒有辦法做到這一點?更改崇高文本中的「轉到任何內容」的默認行爲

+2

Google搜索返回了[論壇帖子](http://www.sublimetext.com/forum/viewtopic.php?f=2&t=7340)。那是你在找什麼或者別的什麼嗎? – 2013-02-27 16:41:56

+0

是的,這是我看,謝謝:) – 2013-02-27 19:12:07

回答

3

我已經在評論中回答了上述問題,但我在此提供了一個答案,以便它不再被標記爲未答覆。

Sublime Forum上有類似的話題討論這一點。

總之,您需要將您的用戶設置(Preferences -> Settings - User)中的以下內容添加到您希望忽略的任何其他目錄或文件類型中。

// folder_exclude_patterns and file_exclude_patterns control which files 
// are listed in folders on the side bar. These can also be set on a per- 
// project basis. 
"folder_exclude_patterns": [".svn", ".git", ".hg", "CVS"], 
"file_exclude_patterns": ["*.pyc", "*.pyo", "*.exe", "*.dll", "*.obj","*.o", "*.a", "*.lib", "*.so", "*.dylib", "*.ncb", "*.sdf", "*.suo", "*.pdb", "*.idb", ".DS_Store", "*.class", "*.psd", "*.db"], 
// 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"], 
+2

該解決方案的缺點是該文件夾也從側邊欄消失:( – 2013-03-04 13:33:13

+0

希望它會在ST3中得到解決您可以總是預先安排您的搜索與任何文件夾您的文件,例如'src/filename',但隨着時間的推移可能會令人討厭。 – 2013-03-04 14:31:39