vscode 多彩特殊注释,或者说是标记
vscode 多彩特殊注释,或者说是标记,我萌新,具体它好不好用我没查个人觉得应该会好用,插件名字叫"todo tree"
json的配置格式:(加到最后面的花括号里面)
程序代码:
//下面是todo tree的相关设置 "todo-tree.tree.showScanModeButton": true, "todo-tree.filtering.ignoreGitSubmodules": true, "todohighlight.keywords": [], "todo-tree.tree.showCountsInTree": true, "todohighlight.keywordsPattern": "TODO:|FIXME:|NOTE:|\\(([^)]+)\\)", "todohighlight.defaultStyle": {}, "todohighlight.isEnable": false, "todo-tree.tree.scanMode": "workspace", "todo-tree.highlights.customHighlight": { "BUG": { "icon": "bug", "foreground": "#F56C6C", "type": "text" }, "FIXME": { "icon": "flame", "foreground": "#FF9800", "type": "tag-and-comment" }, "TODO": { "icon": "check", "iconColour": "#81ec29", "foreground": "#FFEB38", "background": "#3d3a3a", "type": "line", "rulerColour": "#2237b1" }, "NOTE": { "icon": "note", "foreground": "#67C23A", "type": "whole-line" }, "INFO": { "icon": "info", "foreground": "#909399", "type": "text-and-comment" }, "TAG": { "icon": "tag", "foreground": "#409EFF", "type": "line" }, "HACK": { "icon": "versions", "foreground": "#E040FB", "type": "line" }, "XXX": { "icon": "unverified", "foreground": "#E91E63", "type": "line" } }, "todo-tree.general.tags": [ "BUG", "HACK", "FIXME", "TODO", "INFO", "NOTE", "TAG", "XXX" ], "todo-tree.general.statusBar": "total", "todo-tree.highlights.backgroundColourScheme": [ "red", "orange", "yellow", "green", "blue", "indigo", "violet" ],
[此贴子已经被作者于2023-4-8 09:09编辑过]