Sublime Forum

Filtering Files Displayed in SideBar

#1

Is there a way to filter which files display in the sidebar?

I am looking primarily to not display certain file types such as pdf and image files but it would also be nice to filter out files outside a date range.

0 Likes

Folders
#2

I found the way to filter the file types using the file_exclude_pattern in user settings:

“file_exclude_patterns”:

"*.pdf",
"*.ark",
"*.reportark",
"*.png",
"*.gif",
"*.jpg",
"*.exe",
"*.dll",
"*.obj",
"*.swf",
"*.dbf",
"*.lib",
"*.cdx",
"*.cfr",
"*.ico",
"*.lnk",
"*.bak",
"*.sig",
"*.xls",
"*.doc",
"*.docx",
"*.xlsx",
"*.xps",
".DS_Store",
"*.class",
"*.psd",
"*.db"

]

0 Likes