We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c20fe6f commit e6ff35cCopy full SHA for e6ff35c
lib/iex/lib/iex/options.ex
@@ -128,7 +128,8 @@ defmodule IEx.Options do
128
end
129
130
# Strip the first paragraph
131
- String.lstrip(Regex.replace %r/\A.+?^$/ms, doc, "")
+ stripped = String.lstrip(Regex.replace %r/\A.+?^$/ms, doc, "")
132
+ IEx.color :info, stripped
133
134
nil -> raise_option(name)
135
lib/iex/mix.exs
@@ -13,7 +13,7 @@ defmodule IEx.Mixfile do
13
enabled: true,
14
eval_result: "yellow",
15
error: "red",
16
- info: "yellow",
+ info: "normal",
17
directory: "blue",
18
device: "green"
19
],
0 commit comments