在 TextMate 中隐藏特定文件

发布于 2024-08-31 01:36:45 字数 165 浏览 2 评论 0原文

我做了很多 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 技术交流群。

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

发布评论

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

评论(2

安人多梦 2024-09-07 01:36:45

您需要修改文件模式正则表达式:

TextMate-->Preferences-->Advanced-->FolderReferences

您只需将 |\.(jar) 添加到正则表达式中:

!(/\.(?!htaccess)[^/]*|\.(tmproj|o|pyc)|\.(jar)|/Icon\r|/svn-commit(\.[2-9])?\.tmp)$

看看 这个

You need to modify File Pattern regex in :

TextMate-->Preferences-->Advanced-->FolderReferences

You just have to add |\.(jar) to your regex:

!(/\.(?!htaccess)[^/]*|\.(tmproj|o|pyc)|\.(jar)|/Icon\r|/svn-commit(\.[2-9])?\.tmp)$

Have a look at this.

南烟 2024-09-07 01:36:45

您也可以对特定的 Textmate 项目执行此操作:

  1. 将项目保存在某个位置,例如在 myproject.tmproj 中。
  2. 确保该项目未在 Textmate 中打开(否则当您关闭项目时,Textmate 将覆盖您的更改)
  3. 使用不同文本编辑器打开 myproject.tmproj 文件
  4. 添加将要忽略的文件的模式添加到紧随 regexFolderFilter 行之后的行上的 值。在这种情况下,您可以在 )$ 之前添加 |\.jar
  5. 保存文件。
  6. 在 Textmate 中重新打开该项目。

如果您也使用命令行命令 mate,则还可以使用 Textmate 打开步骤 3 中的 .tmproj 文件。

You can do this for a specific Textmate project too:

  1. Save the project somewhere, for example in myproject.tmproj.
  2. Make sure the project isn't open in Textmate (otherwise Textmate will overwrite your changes when you close the project)
  3. Open up the myproject.tmproj file with a different text editor
  4. Add a pattern for the files you want to ignore to the <string> value on the line immediately following the regexFolderFilter line. In this case you would add |\.jar just before the )$</string>.
  5. Save the file.
  6. Re-open the project in Textmate.

You can also open the .tmproj file in step 3 with Textmate if you use the command line command mate, too.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文