todo 标签不适用于 eclipse 和 pydev
我在 fedora 和 pydev 2.2.2 上使用 eclipse 3.7.0
我尝试使用 todo 标签,但它不起作用。 窗口上的待办事项标签 >偏好看起来不错。 我可以在该行旁边使用左键单击添加。
请指教
I'm using eclipse 3.7.0 on fedora and pydev 2.2.2
I tried to use the todo tags but it doesnt work.
the todo tags on window > preferences looks fine.
i can add a using left click beside the line.
please advice
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
带有 #TODO 的注释仅在以下情况下生成任务:
代码位于源文件夹中(即:在 PYTHONPATH 中)
您有构建器已打开(或不时手动运行构建)。
参考: http://pydev.org/manual_adv_tasks.html
入门指南 ( http://pydev.org/manual_101_root.html )有关于如何配置的说明PyDev 正确,以便诸如待办任务之类的事情正常工作
Comments with #TODO will only generate tasks if:
The code is in a source folder (i.e.: in the PYTHONPATH)
You have the builders turned on (or run the build manually from time to time).
Reference: http://pydev.org/manual_adv_tasks.html
The getting started guide ( http://pydev.org/manual_101_root.html ) has instructions on how to config PyDev properly so that things like todo tasks work properly
确保你写的是:
否则,它不会起作用。请注意“O”后面的冒号。
Make sure you are writing:
Otherwise, it won't work. Note the colon after the 'O'.