VSCode插件 Todo Tree --TODO标记

1、安装

 

 

2、自定义配置

ctrl+, 打开vscode设置,打开json文件

 

按需配置

 

 

"todo-tree.general.tags": [
    "BUG",
    "FIX",
    "TODO",
  ],
  "todo-tree.highlights.customHighlight": {
    "BUG": {
      "icon": "circle-slash",
      "iconColour": "red",
      "gutterIcon": true,
      "background": "red",
      "foreground": "white",
      "type": "line"
    },
    "FIX": {
      "icon": "tools",
      "iconColour": "yellow",
      "gutterIcon": true,
      "background": "yellow",
      "foreground": "blue",
      "type": "line"
    },
    "TODO": {
      "icon": "calendar",
      "iconColour": "deepskyblue",
      "gutterIcon": true,
      "background": "deepskyblue",
      "foreground": "white",
      "type": "line"
    },
  },

 

 

posted @ 2022-11-01 11:06  hwinter_c  阅读(608)  评论(0编辑  收藏  举报