如何在Resharper 8中获得多行TODO

时间:2014-05-28 20:42:10

标签: resharper

我一直想弄清楚如何更改选项中的正则表达式 - >待解决方案中的待办事项颜色代码,并允许在待办事项中使用多行。

任何想法?

1 个答案:

答案 0 :(得分:23)

我找到了答案,比我想象的更容易

Ortral regex for todo在resharper中 (?TODO)|(。*)|;(?&LT = \ W ^)(\ W $)

可以使用正则表达式来实现这一点......

进入Resharper - >选项 - >待办事项并将现有正则表达式更改为

(?s)(?<=\W|^)(?<TAG>TODO)(\W|$)(.*)

(?s)选项允许mutliline TODO&#39>

待办事项的格式是

        /* TODO: a Multiline
         * to do list must use the block comment style
         * though it will appear spaced out in the To-do explorer
         * it will color code it all correctly
         */