在 TextMate 中隐藏特定文件
我做了很多 JRuby on Rails 应用程序,并且我们有相当多的 Java .jar 依赖项。这些在 textmate 中变得非常烦人,因为它确实弄乱了我的 lib 目录,而且我(显然)从来不需要实际打开这些文件。
有人可以告诉我如何从 Textmate 中的文件列表中隐藏 .jar 文件吗?
I do a lot of JRuby on Rails apps, and we have a fair amount of Java .jar dependencies. These become quite annoying in textmate as it really muddies up my lib directory, and I never (obviously) need to actually open these files.
Can someone tell me how I might hide .jar files from my file listing in Textmate??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要修改文件模式正则表达式:
您只需将
|\.(jar)
添加到正则表达式中:看看 这个。
You need to modify File Pattern regex in :
You just have to add
|\.(jar)
to your regex:Have a look at this.
您也可以对特定的 Textmate 项目执行此操作:
myproject.tmproj
中。myproject.tmproj
文件regexFolderFilter
行之后的行上的
值。在这种情况下,您可以在)$
之前添加|\.jar
。如果您也使用命令行命令
mate
,则还可以使用 Textmate 打开步骤 3 中的.tmproj
文件。You can do this for a specific Textmate project too:
myproject.tmproj
.myproject.tmproj
file with a different text editor<string>
value on the line immediately following theregexFolderFilter
line. In this case you would add|\.jar
just before the)$</string>
.You can also open the
.tmproj
file in step 3 with Textmate if you use the command line commandmate
, too.