-
-
Notifications
You must be signed in to change notification settings - Fork 71
Open
Labels
enhancementNew feature or requestNew feature or request
Milestone
Description
I personally would prefer other highlights than #
in diagnostics. So I played around with some replacements. My prefered approach would be escape sequences. I tried it manually and with colorette
but it didn't work.
#
Escape sequences
*
_
[]
No highlights
_
for underline, []
for bold
const prettyPrint = (m: IStyledString) =>
m.underline && m.bold
? `[_${m.string}_]`
: m.underline
? `_${m.string}_`
: m.bold
? `[${m.string}]`
: m.string;
Note
Replacements like this need to be adapted.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request