feat(util/sexpr/format): turn off colors on Windows
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
fa1f64e2d5
commit
71a0f83143
1 changed files with 4 additions and 0 deletions
|
@ -32,8 +32,12 @@
|
|||
#endif
|
||||
|
||||
#ifndef LEAN_DEFAULT_PP_COLORS
|
||||
#ifdef LEAN_WINDOWS
|
||||
#define LEAN_DEFAULT_PP_COLORS false
|
||||
#else
|
||||
#define LEAN_DEFAULT_PP_COLORS true
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef LEAN_KEYWORD_HIGHLIGHT_COLOR
|
||||
#define LEAN_KEYWORD_HIGHLIGHT_COLOR format::ORANGE
|
||||
|
|
Loading…
Reference in a new issue