Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以定义#@TODO或类似的东西作为要在 Python 中突出显示的关键字吗?
#@TODO
这是特定于文本编辑器还是特定于语言/平台?
它的编辑器功能,eclipse有荧光笔,在emacs中你可以定义和......
您也可以使用 bash 脚本查找项目中的所有待办事项
grep "# TODO" ./ -Rn
这是非常特定于编辑器的。语言/平台与突出显示无关。