Textmate,如何限制 TODO 捆绑包启动时搜索的文件夹?
我喜欢 textmate 中的 TODO 包。 然而,当我启动它时,它会搜索我的整个驱动器。 有没有办法告诉它只搜索我的项目文件夹? 或者更好的是,当前打开的项目的文件夹?
本文 Textmate:驯服 TODO 和 FIXME, 向您展示如何使其忽略文件夹,
我想知道是否有办法设置待办事项扫描的目标文件夹?
谢谢
I like the TODO bundle in textmate.
When I launch it however, it searches what seems like my entire drive.
Is there a way I can tell it to just search, for example, my projects folder?
Or better yet, the folder of the project that is currently open?
This article, Textmate: Taming TODOs and FIXMEs, shows you how to make it ignore a folder,
I was wondering if there was a way to set a target folder for todo to scan?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在textmate2中,您可以在.tm_properties中设置TM_TODO_IGNORE变量,这很好地在项目的基础上设置TODO例外。它应该是一个正则表达式。示例:
TM_TODO_IGNORE = '/(disabled(-src)?|onig-.*|build|cache|CxxTest|(FScript|BWToolkitFramework).framework)/'
也可以设置 TM_TODO_IGNORE首选项>变量,相同的正则表达式。
In textmate2 you can set the TM_TODO_IGNORE variable in .tm_properties, nice to set TODO exceptions on a project basis. It should be a regular expression. Example:
TM_TODO_IGNORE = '/(disabled(-src)?|onig-.*|build|cache|CxxTest|(FScript|BWToolkitFramework).framework)/'
It is also possible to set TM_TODO_IGNORE in Preferences > Variables, same regex.
我正在使用 Stanley Rost 的 todo 捆绑包 - 最后修改于 2010 年 1 月 6 日,并通过出色的 GetBundles 捆绑包进行安装。
如果在项目面板中未选择任何内容,TODO 将在项目中查找:如果在项目面板中选择了文件夹或文件,则 TODO 仅在它们中查找。请注意,TODO 列表窗口中也有一个过滤器面板。
HTH
安托万
I am using the todo bundle from Stanley Rost - last modified on Jan 06, 2010 and installed thanks to the great GetBundles bundle.
If nothing is selected in the Project Panel, TODO looks in the project for; if folders or files are selected in the Project Panel then TODO looks only in they for. Note that there is a filter panel in the TODO list window too.
HTH
Antoine