7

我有一个自定义提示,但是当我启动时iex,会显示一个内置提示。点击回车后,我的提示生效。如何让我的提示在iex启动时生效?

这是我所看到的:

在此处输入图像描述

这是我的.iex.exs文件:

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
)
4

1 回答 1

3

这是iex. 我已经找到并修复了它:https ://github.com/elixir-lang/elixir/pull/4895

于 2016-06-27T07:24:23.753 回答