Notice
Recent Posts
Recent Comments
Link
250x250
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | ||||
| 4 | 5 | 6 | 7 | 8 | 9 | 10 |
| 11 | 12 | 13 | 14 | 15 | 16 | 17 |
| 18 | 19 | 20 | 21 | 22 | 23 | 24 |
| 25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 단어단위로떨어지기
- 웹아이콘
- npm install 문제
- package.json
- 이미지반응형
- git lab clone
- node설치
- MediaQuery
- npm install
- node 오류
- googleicon
- legacy-peer
- 의존성문제
- slickslider
- Git clone
- 플러그인
- 그누보드반응형
- owlcarousel
- vscode git clone
- react npm install
- 아이콘사용법
- window 정책변경
- 정적객체
- XEIcon
- minwidth
- fontawesome
- maxwidth
- 글자들여쓰기
- npm start
- 동적객체
Archives
- Today
- Total
어쩌다 알게 된 ƪ(•̃͡•̃͡ ƪ
⬛️ [vscode] extension - Todo Tree => todo 만들기 본문
728x90
1. setting

2. todo 검색 -> General 클릭 -> Edit in settings.json 클릭

3. 추가

{
"liveSassCompile.settings.excludeList": ["**/node_modules/**", ".vscode/**"],
"liveSassCompile.settings.formats": [
{
"format": "expanded",
"extensionName": ".css",
"savePath": "~/../css"
}
],
"liveSassCompile.settings.generateMap": true,
"todo-tree.general.tags": [
"BUG",
"HACK",
"FIXME",
"TODO",
"XXX",
"[]",
"[o]",
"NOTE",
"CLIST",
"WARNING"
],
"todo-tree.highlights.customHighlight": {
"CLIST": {
"background": "#20a904",
"foreground": "#181717",
"gutterIcon": true,
"icon": "check-circle-fill",
"iconColour": "#20a904",
"type": "text"
},
"NOTE": {
"background": "#e67979",
"foreground": "#181717",
"gutterIcon": true,
"icon": "star-fill",
"iconColour": "#ffc404",
"type": "text"
},
"TODO": {
"background": "#b782f9",
"foreground": "#181717",
"gutterIcon": true,
"icon": "pin",
"iconColour": "#b782f9"
},
"WARNING": {
"background": "#ffc404",
"foreground": "#181717",
"gutterIcon": true,
"icon": "alert",
"iconColour": "#ff9f04"
},
"[]": {
"background": "#f87364",
"foreground": "#181717",
"gutterIcon": true,
"icon": "x",
"iconColour": "#f87364",
"type": "text"
},
"[o]": {
"background": "#20a904",
"foreground": "#181717",
"gutterIcon": true,
"icon": "check",
"iconColour": "#20a904",
"type": "text"
}
},
"todo-tree.regex.regex": "((\\*|//|#|<!--|;|/\\*|^)\\s*($TAGS)|^\\s*- \\[ \\])",
"todo-tree.general.tagGroups": {
}
}
4. 추가하면 옆에서 리스트로 볼 수 있음


728x90
'개발 툴 > ⬛️ vscode' 카테고리의 다른 글
| vscode에서 인코드 디코드 Encode/Decode extension 사용하기 (0) | 2025.12.29 |
|---|---|
| [vscode] 지정한 폴더 내에서만 찾기 (0) | 2025.04.08 |
| ⬛ [vscode] git clone 검색창에서 하기 (0) | 2025.03.27 |
| ⬛ [vscode] ctrl + / 주석처리 안될 때 (0) | 2025.03.24 |
Comments
