Sublime Text 2 - Preventing the creation of files._

Sublime Text 2 - when working on a network drive, it creates ._ files, and I can not find the settings to disable this function.

I had a similar problem with TextMate before, and the solution was to change the OakDocumentDisableFSMetaData property, but I can't find anything like this in Sublime

TextMate's solution was:

defaults write com.macromates.textmate OakDocumentDisableFSMetaData 1

http://blog.zachwaugh.com/post/309913111/preventing-textmate-from-creating-files-on-network-drive

+5
source share
1 answer

Just add ._ * to the exclude_patterns_file in your sublime settings. Or if you do not want it to be overwritten with additional updates, add this line to User Prefs

"file_exclude_patterns": ["*.pyc", "*.pyo", "*.exe", "*.dll", "*.obj","*.o", "*.a", "*.lib", "*.so", "*.dylib", "*.ncb", "*.sdf", "*.suo", "*.pdb", "*.idb", ".DS_Store", "*.class", "*.psd", "*.db", "._*"]
+5
source

All Articles