Sublime text. Hide but not exclude files / folders from the project?

Is it possible to simply hide, but not exclude from the project? So that I can still access them when searching for projects, etc.

By hides I mean not displaying them in the sidebar . When I simply exclude files from the project, I cannot access them through Cmd-P .

+4
source share
2 answers

This is currently not possible in Sublime Text 3.

Sublime only allows you to work with files that it knows about, therefore, if they are not included in the project (that is, they are not displayed in the sidebar), then Sublime does not know that they exist and cannot be searched.

( , , ), binary_file_patterns, .

+1

, :

- (Project > Save Project As)  - .sublime-project  - ,

{
 "folders": [
    {
     "folder_exclude_patterns": [
        "excludedfolder1",
        "excludedfolder2"
     ],
     "path": "/your/project/path/here",
     "file_exclude_patterns": [
        "excludedfilename1.txt",
        "excludedfilename1.txt"
     ]
    }
 ]
}

0

All Articles