Re: [julia-users] Re: Change bold text in REPL to normal

2016-04-20 Thread Yichao Yu
On Wed, Apr 20, 2016 at 11:53 AM, wrote: > Good, this works. But, I don't think the preference for expressions over > strings is mentioned in the Metaprogramming section of the manual. I didn't know parsing was even part of it. It really shouldn't be. > > John > >

Re: [julia-users] Re: Change bold text in REPL to normal

2016-04-20 Thread lapeyre . math122a
Good, this works. But, I don't think the preference for expressions over strings is mentioned in the Metaprogramming section of the manual. John On Wednesday, April 20, 2016 at 4:19:18 PM UTC+2, Yichao Yu wrote: > > On Wed, Apr 20, 2016 at 10:11 AM, > wrote: > > I

Re: [julia-users] Re: Change bold text in REPL to normal

2016-04-20 Thread Yichao Yu
On Wed, Apr 20, 2016 at 10:11 AM, wrote: > I see. To get normal weight, red, warn() text, this works for me: > > Base.text_colors[:rednormal] = "\033[0m\033[31m" > Base.eval(parse("default_color_warn = :rednormal")) Base.eval(:(default_color_warn = :rednormal)) at

[julia-users] Re: Change bold text in REPL to normal

2016-04-20 Thread lapeyre . math122a
I see. To get normal weight, red, warn() text, this works for me: Base.text_colors[:rednormal] = "\033[0m\033[31m" Base.eval(parse("default_color_warn = :rednormal")) text_colors is defined in base/client.jl On Wednesday, April 20, 2016 at 3:10:19 PM UTC+2, cormu...@mac.com wrote: > > Thanks,

[julia-users] Re: Change bold text in REPL to normal

2016-04-20 Thread cormullion
Thanks, useful info. Although, I don't mind the colors. It's the forced bolding that looks so bad... :( > >

[julia-users] Re: Change bold text in REPL to normal

2016-04-19 Thread lapeyre . math122a
As a partial solution, this makes warnings print in black rather than red. julia> Base.eval(parse("default_color_warn = :black")) I just had a problem in which I wanted to do the opposite, restore coloring and bold to a new REPL. Also, this gives a black, plain typeface to warning and error

[julia-users] Re: Change bold text in REPL to normal

2016-02-08 Thread Nitin Arora
+1, i am looking for a solution here as well. On Monday, February 8, 2016 at 12:10:28 AM UTC-8, cormu...@mac.com wrote: > > I'm trying to improve the appearance of text in my Julia REPL. According > to this PR (https://github.com/JuliaLang/julia/pull/11250) (which sadly > seems to have ground