Skip to content

Commit

Permalink
enable colors in notebook (#470)
Browse files Browse the repository at this point in the history
fixes # 469
  • Loading branch information
KristofferC authored and stevengj committed Sep 21, 2016
1 parent e9699c4 commit 1fcab81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deps/build.jl
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ juliakspec = abspath(spec_name)
binary_name = is_windows() ? "julia.exe" : "julia"
kernelcmd_array = String[joinpath(JULIA_HOME,("$binary_name")), "-i"]
ijulia_dir = get(ENV, "IJULIA_DIR", Pkg.dir("IJulia")) # support non-Pkg IJulia installs
append!(kernelcmd_array, ["--startup-file=yes", joinpath(ijulia_dir,"src","kernel.jl"), "{connection_file}"])
append!(kernelcmd_array, ["--startup-file=yes", "--color=yes", joinpath(ijulia_dir,"src","kernel.jl"), "{connection_file}"])

ks = Dict(
"argv" => kernelcmd_array,
Expand Down

0 comments on commit 1fcab81

Please sign in to comment.