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 fdcce47 commit 72afe51Copy full SHA for 72afe51
stdlib/REPL/src/REPL.jl
@@ -1231,10 +1231,8 @@ function setup_interface(
1231
global pkg_mode
1232
if pkg_mode === nothing
1233
LineEdit.clear_line(LineEdit.terminal(s))
1234
- Base.printstyled(LineEdit.terminal(s), "(", color = :blue)
1235
# use 6 .'s here because its the same width as the most likely `@v1.xx` env name
1236
- Base.printstyled(LineEdit.terminal(s), "......", color = :light_black)
1237
- Base.printstyled(LineEdit.terminal(s), ") pkg> ", color = :blue)
+ print(LineEdit.terminal(s), styled"{blue:({gray:......}) pkg> }")
1238
# spawn Pkg load to avoid blocking typing during loading. Typing will block if only 1 thread
1239
t_replswitch = Threads.@spawn begin
1240
pkgid = Base.PkgId(Base.UUID("44cfe95a-1eb2-52ea-b672-e2afdf69b78f"), "Pkg")
0 commit comments