Code: Select all
DEFAULT_EXCLUDE_DIRS="~*" ".git" ".svn" ".hg" ".log" ".temp" "_ext" "_externals" "ext" "_out" "out" "Output" "*.backup" "*.bak" "*.old" ".vs" "__pycache__"
But now it starts to interfere with the TC, because currently it is inlined as a raw text into `wincmd.ini`:
Code: Select all
blabla_to_search_SearchFor=*.*|~*\ .git\ .svn\ .hg\ .log\ .temp\ _ext\ _externals\ ext\ _out\ out\ Output\ *.backup\ *.bak\ *.old\ .vs\ Debug\ Release\ RelWithDebInfo\ MinSizeRel\ __pycache__\
blabla_to_search_SearchFlags=0|003002010021|||||||||0000|||
I want something like this:
Code: Select all
blabla_to_search_SearchFor=*.*|%|DEFAULT_EXCLUDE_DIRS| Debug\ Release\ RelWithDebInfo\ MinSizeRel\
Code: Select all
blabla_to_search_SearchFor=*.*|%|DEFAULT_EXCLUDE_DIRS:%(.suffix)="\",%(.prefix)="*\"| Debug\ Release\ RelWithDebInfo\ MinSizeRel\
Code: Select all
"*\~*\" "*\.git\" "*\.svn\" "*\.hg\" "*\.log\" "*\.temp\" "*\_ext\" "*\_externals\" "*\ext\" "*\_out\" "*\out\" "*\Output\" "*\*.backup\" "*\*.bak\" "*\*.old\" "*\.vs\" "*\__pycache__\"
Is there a way to use it or may be implement?
