0

Exclude certain files from the project list

Henrique Boaventura 13 years ago updated by lanzz 12 years ago 1
Where can I add some pattern to exclude files from the project side bar (such as .git, .svn, and other hidden files)
Edit your .sublime-project file and add a "folder_exclude_patterns" key:
{
  "folders":
  [
    {
      "path": "/some/path",
      "folder_exclude_patterns": [".*"]
    }
  ]
}