Sublime Text 2 - 防止创建 ._ 文件

发布于 2024-12-27 02:10:52 字数 496 浏览 1 评论 0 原文

Sublime Text 2 - 在网络驱动器上工作时,它会创建 ._ 文件,而且我似乎找不到关闭此功能的设置。

我之前在 TextMate 中遇到过类似的问题,解决方案是更改 OakDocumentDisableFSMetaData 属性,但我在 Sublime TextMate 解决方案中找不到任何类似的内容

defaults write com.macromates.textmate OakDocumentDisableFSMetaData 1

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

Sublime Text 2 - when working on a network drive it create ._ files, and I can't seem to find a settings to turn this feature off.

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

TextMate solution was:

defaults write com.macromates.textmate OakDocumentDisableFSMetaData 1

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

披肩女神 2025-01-03 02:10:52

只需将 ._* 添加到 Sublime 首选项中的 file_exclude_patterns 中即可。
或者,如果您不希望它被进一步的更新覆盖,请将此行添加到您的用户首选项中

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

Just add ._* to the file_exclude_patterns in your Sublime Preferences.
Or if you don't want it to be overwritten by further updates add this line to your 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", "._*"]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文