如何在 Visual Studio 中添加高优先级 TODO 注释?
添加如下注释:
// TODO: Refactor this code
...在任务列表中创建一个我可以查看的任务等。有一个标记为 !
的列,可让您按优先级对这些任务进行排序。
如何设置特定任务的优先级?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
任务的优先级取决于您用来标记它的关键字。您可以通过转到“工具”->“选项”->“环境”->“任务列表”来查看和编辑关键字及其优先级列表。
例如,在我的安装中,我将 HACK、TODO 和 UNDONE 作为正常优先级,并将 UnresolvedMergeConflict 作为高优先级。
如果要添加新标签,请将其输入“名称”框中,选择优先级,然后单击“添加”。
The priority of the task depends on the keyword you use to tag it. You can see and edit a list of keywords and their priorities by going to Tools->Options->Environment->Task List.
For example, on my installation, I've got HACK, TODO and UNDONE as normal priority, and UnresolvedMergeConflict as high priority.
If you want to add a new tag, type it into the "Name" box, choose a priority, and then click "Add".
一个廉价的技巧是始终将优先级放在 TODO 标签之后,然后按描述排序。仅使用优先级 1-9 以避免字母排序混乱。
任何没有优先级的评论都会掉到底部。
(点击放大图片)
A cheap hack is to always put a priority just after the the TODO tag, then sort by description. Only use priority 1-9 to avoid alphabetic sorting confusion.
Any comments without a priority will drop to the bottom.
(Click to enlarge the image)
定义优先级的一个非常简单的方法/技巧是 TODO 末尾的操作系统数量,然后按“描述”对任务列表进行排序。
优点:
从 Tsoding,他谈到它是 emacs 的扩展。链接在视频说明里。
A very simple way/hack to define the priority is the number of Os at the end of TODO, then you sort the task List by "Description".
Pros:
I got this idea from a video by Tsoding where he talks about it being an extension for emacs. Link in the video description.