Add 'tr' sgr color key for trace messages

This commit is contained in:
Xavier Delaruelle
2020-09-06 14:22:17 +02:00
parent b612bf5eae
commit 4e0d8b5966
2 changed files with 3 additions and 3 deletions

4
configure vendored
View File

@@ -95,8 +95,8 @@ pager=less
pageropts='-eFKRX'
verbosity=normal
color=n
darkbgcolors='hi=1:db=2:se=2:er=91:wa=93:me=95:in=94:mp=1;94:di=94:al=96:sy=95:de=4:cm=92'
lightbgcolors='hi=1:db=2:se=2:er=31:wa=33:me=35:in=34:mp=1;34:di=34:al=36:sy=35:de=4:cm=32'
darkbgcolors='hi=1:db=2:tr=2:se=2:er=91:wa=93:me=95:in=94:mp=1;94:di=94:al=96:sy=95:de=4:cm=92'
lightbgcolors='hi=1:db=2:tr=2:se=2:er=31:wa=33:me=35:in=34:mp=1;34:di=34:al=36:sy=35:de=4:cm=32'
termbg=dark
lockedconfigs=
unloadmatchorder=returnlast

View File

@@ -772,7 +772,7 @@ proc reportInfo {message {title INFO}} {
proc reportTrace {message {title TRACE}} {
if {[isVerbosityLevel trace]} {
# use reportError for conveniance but there is no error here
reportError [sgr db $message] 0 $title db 0
reportError [sgr tr $message] 0 $title tr 0
}
}