Eclipse:如何从任务中的 SQL 和 XML 文件获取 TODO
在 Java 文件中,我可以编写 TODO 注释,它们会显示在“任务”窗口中。
// TODO: Do something about this
但是,当我在 SQL 脚本和 XML 文件中编写 TODO 注释时,它们不会显示。有什么办法可以让他们这样做吗?例如:
-- TODO: Fix this SQL query
<!-- TODO: Fix this XML -->
In Java files I can write TODO comments and they show up in the Tasks window.
// TODO: Do something about this
However, when I write TODO comments in for example SQL scripts and XML files, they don't show up. Is there a way I can get them to do that? For example:
-- TODO: Fix this SQL query
<!-- TODO: Fix this XML -->
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
检查主首选项对话框中的任务标签页面。在对话框左上角的搜索框中输入“任务”,以帮助您找到相关页面。对于 XML 文件,我知道该功能默认处于关闭状态。
Check your main Preference dialog for Task Tags pages. Type "task" into the search box in the upper left of the dialog to help you find relevant pages. For XML files, I know that that feature is off by default.
要激活的复选框:
编辑器/结构化文本编辑器/任务标签=>勾选“启用任务标签搜索”
checkbox to activate :
Editors/structured text editors/task tags => check "Enable searching for task tags"
因为一张图片值一千个字:
Because a picture worth a thousand words :
另一种选择是通过右键单击编辑器的装订线来使用
添加任务...
。Another option is to use
Add Task...
by right-clicking on the gutter of the editor.