Hello,
I see a list of variables on this page: http://tm2tips.tumblr.com/post/14262423719/list-of-settings
excludeFiles excludeFilesInBrowser excludeInFileChooser excludeInBrowser excludeInFolderSearch
Is there a doc that describes what each one does? I tried using a few of them to filter the contents of the File Browser.
I must not understand how they work... I am having difficulty filtering the Apple Double files from view in the File Browser.
apple_double = '._*' excludeFilesInBrowser = "{$exclude, $apple_double}
thx! AZ
This is an explanation for Apple Double: http://support.apple.com/kb/TA20578
I left off a quote too:
apple_double = '._*' excludeFilesInBrowser = "{$exclude, $apple_double}"
Do I need to escape the asterisk, as this is a glob and not a regex? apple_double = '._*'
thx az
On 09/05/2012, at 03.10, Artie Ziff wrote:
I see a list of variables on this page: http://tm2tips.tumblr.com/post/14262423719/list-of-settings
excludeFiles excludeFilesInBrowser excludeInFileChooser excludeInBrowser excludeInFolderSearch
Is there a doc that describes what each one does?
There is some info here http://wiki.macromates.com/Reference/Settings
I tried using a few of them to filter the contents of the File Browser.
I must not understand how they work... I am having difficulty filtering the Apple Double files from view in the File Browser.
If you revert to not setting any keys at all, Apple Double files should not be shown.
apple_double = '._*' excludeFilesInBrowser = "{$exclude, $apple_double}
You must not have a space after the comma and you must add the ending double quote after the close bracket.