Todo Tree
Todo Tree
说明
可以快速定位到todo等地方
设置
- 点击左下角设置
- 点击设置
- 点击右上角按钮
- 输入
// 配置匹配的关键字
"todo-tree.general.tags": [ "BUG","HACK","FIXME","INFO","TODO","NOTE","TAG","XXX","todo","bug","fix","note","info"],
// 配置关键字后在树形具体的显示
"todo-tree.highlights.customHighlight":{
"BUG": {
"icon": "bug",
"foreground": "#F56C6C",
// 代码中的背景色
"background": "#e94d1e7a"
"type": "line"
},
"bug": {
"icon": "bug",
"foreground": "#F56C6C",
"type": "line"
},
"FIXME": {
"icon": "flame",
"foreground": "#FF9800",
"type":"line"
},
"fix": {
"icon": "flame",
"foreground": "#FF9800",
"type":"line"
},
"TODO":{
"foreground": "#FFEB38",
"type":"line"
},
"todo":{
"foreground": "#FFEB38",
"type":"line"
},
"NOTE":{
"icon": "note",
"foreground": "#67C23A",
"type":"line"
},
"note":{
"icon": "note",
"foreground": "#67C23A",
"type":"line"
},
"INFO":{
"icon": "info",
"foreground": "#909399",
"type":"line"
},
"info":{
"icon": "info",
"foreground": "#909399",
"type":"line"
},
"TAG":{
"icon": "tag",
"foreground": "#409EFF",
"type":"line"
},
"HACK":{
"icon": "versions",
"foreground": "#E040FB",
"type":"line"
},
"XXX":{
"icon": "unverified",
"foreground": "#E91E63",
"type":"line"
}
},