sublimetext2 - Per-project Sublime Text 2 settings -


my per-project sublime text 2 settings seem not override global settings. added lines inside "settings" inside myproj.sublime-project:

"file_exclude_patterns": ["config.xml"] "folder_exclude_patterns": [".git", ".metadata"] 

but did not prevent folders/files showing on project sidebar. none of files/folders above mentioned in global settings.

is known sublime issue? doing wrong?

you have add settings under folders (example taken here):

{     "folders":     [         {             "path": "src",             "folder_exclude_patterns": ["backup"]         },         {             "path": "docs",             "name": "documentation",             "file_exclude_patterns": ["*.css"]         }     ] } 

Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -