Skip to content

Commit 2911716

Browse files
authored
change to one of the system colors on windows (#81)
1 parent d4e2e5f commit 2911716

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/repl.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ function RunDebugger(frame, repl = Base.active_repl, terminal = Base.active_repl
55

66
# Setup debug panel
77
panel = LineEdit.Prompt(promptname(state.level, "debug");
8-
prompt_prefix = "\e[38;5;166m",
8+
prompt_prefix = Sys.iswindows() ? "\e[33m" : "\e[38;5;166m",
99
prompt_suffix = Base.text_colors[:normal],
1010
on_enter = s->true)
1111

0 commit comments

Comments
 (0)