Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Exclude folder in goto (CTRL + P) in Sublime text

I can't find a tick to exclude / ignore a folder when I want to open a file with goto or with CTRL + P shortcut. For example in a java project I want to open a file to edit some lines, as you know in a project we have src folders and target with the same compiled files, I want ignore all the files above every target folder.

like image 788
FarukT Avatar asked Sep 04 '18 08:09

FarukT


1 Answers

I found the property makes for me

"folder_exclude_patterns": ["target",".git"]
like image 135
FarukT Avatar answered Nov 12 '22 05:11

FarukT