1
Fork 0
mirror of https://github.com/Steffo99/steffula-code.git synced 2024-11-21 10:34:21 +00:00

Add support for relative logging levels

This commit is contained in:
Steffo 2024-08-09 03:23:37 +02:00
parent 1092bdd111
commit 81bbcb269c
Signed by: steffo
GPG key ID: 5ADA3868646C3FC0

View file

@ -751,6 +751,7 @@
"name": "log-info", "name": "log-info",
"scope": [ "scope": [
"log.info", "log.info",
"log.relative",
], ],
"settings": { "settings": {
"foreground": "#99eeff", "foreground": "#99eeff",
@ -760,6 +761,7 @@
"name": "log-verbose", "name": "log-verbose",
"scope": [ "scope": [
"log.verbose", "log.verbose",
"meta.indent log.relative",
], ],
"settings": { "settings": {
"foreground": "#a8a8ff", "foreground": "#a8a8ff",
@ -769,6 +771,7 @@
"name": "log-debug", "name": "log-debug",
"scope": [ "scope": [
"log.debug", "log.debug",
"meta.indent meta.indent log.relative",
], ],
"settings": { "settings": {
"foreground": "#dfabff", "foreground": "#dfabff",
@ -783,9 +786,10 @@
"meta.directive.dated.beancount punctuation.separator", "meta.directive.dated.beancount punctuation.separator",
"meta.directive.transaction.beancount punctuation.separator", "meta.directive.transaction.beancount punctuation.separator",
"log.punctuation", "log.punctuation",
"meta.indent meta.indent meta.indent log.relative"
], ],
"settings": { "settings": {
"foreground": "#8a653b", "foreground": "#808080",
} }
}, },
{ {
@ -794,7 +798,7 @@
"log.header", "log.header",
], ],
"settings": { "settings": {
"foreground": "#8a653b", "foreground": "#ffffff",
"fontStyle": "bold" "fontStyle": "bold"
} }
}, },