使用 VIM 管理#TODO(大量文件)

发布于 2024-10-01 03:39:26 字数 299 浏览 3 评论 0原文

我使用 VIM/GVIM 来开发我的 python 项目,并且我随机在代码中留下 #TODO 注释。

有什么方法可以管理(搜索、列出和链接)VIM 中所有出现的 #TODO 吗?我尝试了 tasklist 插件,它几乎是我所需要的,但它只是列出当前文件 #TODO 出现次数。一般来说,我的项目有一些子文件夹和许多 .py 文件,所以我想找到一种方法来搜索当前工作目录中的所有文件夹和文件并列出它们。

I use VIM/GVIM to develop my python projects and I randomly I leave #TODO comments in my code.

Is there any way to manage (search, list and link) all the #TODO occurrences inside VIM? I tried the tasklist plugin, it's almost what I need, but it only lists the current file #TODO occurrences. Generally my projects has some sub-folders and many .py files, so I'd like to find a way to search through all folders and files in the current working directory and list them.

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

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

发布评论

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

评论(1

二智少女 2024-10-08 03:39:27

如果您只想要工作目录中 .py 文件中“TODO”出现的列表,您可以像这样使用 :vimgrep

:vimgrep TODO **/*.py

然后使用以下命令打开快速修复窗口:(

:cw

它可能会打开它无论如何自动,不确定),然后滚动浏览结果,按 Enter 键转到每个出现的位置。

对于更复杂的管理,我可能建议设置问题跟踪器。

If you just want a list of the occurences of "TODO" in .py files in the working directory, you can just use :vimgrep like so:

:vimgrep TODO **/*.py

Then open the quickfix window with:

:cw

(it might open it automatically anyway, not sure) and just scroll through the results, hitting Enter to go to each occurrence.

For more complicated management, I'd probably recommend setting up an issue tracker.

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