Hey y'all,
Is there a way to get Textmate projects to show ".textmate_init" files? ".htaccess" files are visible by default, presumably because it makes sense that you'd want to see this for web projects. However, this is equally true for ".texmate_init" files.
My options are to either set all my hidden files to visible, Mac- wide, using something like Onyx (and cluttering up my desktop world), or my current workaround of accessing and editing the ".textmate_init" file for a given project through the local pane of my FTP program as a sort of bastardized finder window (as it will show hidden files to me).
There's got to be another way -- Any way to get ".textmate_init" files to show up in project windows is appreciated. And I'd like to suggest this as something that the program should do by default; after all, .textmate_init is one of its own proprietary file types. :)
TIA,
linda
On 6/25/07, Linda Dunn ledunn@mac.com wrote:
Is there a way to get Textmate projects to show ".textmate_init" files? ".htaccess" files are visible by default, […]
See the Folder References section of the Advanced pane of the preferences.
Robin
On 6/25/07, Robin Houston robin.houston@gmail.com wrote:
See the Folder References section of the Advanced pane of the preferences.
In more detail: the default File Pattern starts like this:
!(/.(?!htaccess)[^/]*
and you can add .textmate_init as an exception by inserting |textmate_init thus:
!(/.(?!htaccess|textmate_init)[^/]*
leaving the rest of the pattern unchanged.
Robin