vscode 插件 Todo Tree

发布时间 2023-07-18 11:06:06作者: 妖精代码

我用得很顺手的一个插件:插件地址

    "todo-tree.general.tags": [
        "BUG",
        "HACK",
        "FIXME",
        "TODO",
        "CRH",
        "[ ]",
        "[x]"
    ],
    "todo-tree.highlights.customHighlight": {
        "TODO": {
            "type": "line",
            "foreground": "#99FF99"
        },
        "FIXME": {
            "type": "line",
            "foreground": "#ceec0b"
        },
        "BUG": {
            "type": "line",
            "foreground": "#ff0000"
        },
        "CRH": {
            "type": "line",
            "foreground": "#0ce64a"
        },
    },