vscode todo-tree extension

Rhseung·2024년 9월 25일
0

tips

목록 보기
16/18

todo tree window
커스터마이징했다. 참고한 글

	"todo-tree.tree.showCountsInTree": true,
    "todo-tree.general.tagGroups": {},
    "todo-tree.general.showActivityBarBadge": true,
    "todo-tree.general.tags": [
        "TODO",
        "TEST",
        "FIXME",
        "NOTE",
        "[ ]",
        "[x]",
    ],
    "todo-tree.highlights.customHighlight": {
        "TODO": {
            "background": "#91ea74",
            "foreground": "#000000",
            "iconColour": "#91ea74",  
            "gutterIcon": true,
            "type": "text-and-comment",
            "icon": "check-circle"
        },
        "TEST": {
            "background": "#ff94b9",
            "foreground": "#000000",
            "iconColour": "#ff94b9",  
            "gutterIcon": true,
            "type": "text-and-comment",
            "icon": "bug"
        },
        "FIXME": {
            "background": "#ffcd94",
            "foreground": "#000000",
            "iconColour": "#ffcd94",  
            "gutterIcon": true,
            "type": "text-and-comment",
            "icon": "tools"
        },
        "NOTE": {
            "background": "#94e8ff",
            "foreground": "#000000",
            "iconColour": "#94e8ff",  
            "gutterIcon": true,
            "type": "text-and-comment",
            "icon": "hash",
        },
        "[ ]": {
            "background": "#f0f0f0",
            "foreground": "#000000",
            "iconColour": "#f0f0f0",  
            "gutterIcon": true,
            "type": "text-and-comment",
            "icon": "issue-draft"
        },
        "[x]": {
            "background": "#484848",
            "foreground": "#ffffff",
            "iconColour": "#484848",  
            "gutterIcon": true,
            "type": "text-and-comment",
            "icon": "issue-closed"
        }
    },
    "todo-tree.highlights.defaultHighlight": {

    }

0개의 댓글