Skip to content

Commit

Permalink
dont clobber other peoples changes
Browse files Browse the repository at this point in the history
  • Loading branch information
KristofferC committed Dec 10, 2016
1 parent cd4fc96 commit 6977a6d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions doc/src/manual/interacting-with-julia.md
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ end
atreplinit(customize_colors)
```
The available color keys can be seen by typing ``Base.text_colors`` in the help mode of the REPL.
The available color keys can be seen by typing `Base.text_colors` in the help mode of the REPL.
In addition, the integers 0 to 255 can be used as color keys for terminals
with 256 color support.
Expand All @@ -319,12 +319,12 @@ input and answer text by setting the appropriate field of `repl` in the `customi
above (respectively, `help_color`, `shell_color`, `input_color`, and `answer_color`). For the
latter two, be sure that the `envcolors` field is also set to false.
You can also customize the color used to render warning and informational messages by setting
the appropriate environment variable. For instance, to render warning messages in yellow and informational
messages in cyan you can add the following to your `juliarc.jl` file:
You can also customize the color used to render warning and informational messages by
setting the appropriate environment variables. For instance, to render error, warning, and informational
messages respectively in magenta, yellow, and cyan you can add the following to your `juliarc.jl` file:
```julia
ENV["JULIA_ERROR_COLOR"] = :magenta
ENV["JULIA_WARN_COLOR"] = :yellow
ENV["JULIA_INFO_COLOR"] = :cyan
ENV["JULIA_ERROR_COLOR"] = :magenta
```

0 comments on commit 6977a6d

Please sign in to comment.