Highlight [!], [!!], [!!!]

This commit is contained in:
Anthony Rose 2023-06-12 11:19:22 +01:00
parent 750ebbacfe
commit 6c17785f73

View file

@ -21,12 +21,27 @@
"terminal.integrated.enablePersistentSessions": false, "terminal.integrated.enablePersistentSessions": false,
"terminal.integrated.shellIntegration.history": 0, "terminal.integrated.shellIntegration.history": 0,
"todo-tree.general.tags": [ "todo-tree.general.tags": [
"[!!!]",
"[!!]",
"[!]",
"DONE",
"TODO", "TODO",
"WAIT", "WAIT",
"WORK", "WORK"
"DONE"
], ],
"todo-tree.highlights.customHighlight": { "todo-tree.highlights.customHighlight": {
"[!!!]": {
"fontWeight": "bold",
"foreground": "#ffc000"
},
"[!!]": {
"fontWeight": "bold",
"foreground": "#ffc000"
},
"[!]": {
"fontWeight": "bold",
"foreground": "#ffc000"
},
"DONE": { "DONE": {
"foreground": "#c0c0c0" "foreground": "#c0c0c0"
}, },