I have a custom prompt but when I launch iex
, a builtin prompt shows. After I hit enter my prompt takes effect. How can I make my prompt take effect when iex
starts?
Here's what I'm seeing:
And this is my .iex.exs
file:
IEx.configure(
colors: [ enabled: true],
default_prompt: [
"e[G", # move to column 1
"e[35m", # magenta
"MY %prefix(%counter)",
">",
"e[0m" # reset
] |> IO.chardata_to_string
)
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…