KristofferC / OhMyREPL.jl

Syntax highlighting and other enhancements for the Julia REPL
https://kristofferc.github.io/OhMyREPL.jl/latest/
Other
768 stars 60 forks source link

Latest version prints "type Nothing has no field interface" when loaded in startup.jl. #354

Closed lassepe closed 3 months ago

lassepe commented 3 months ago

Withe the startup.jl

if Base.isinteractive()
    @eval Main using OhMyREPL: OhMyREPL
end

OhMyREPL prints "type Nothing has no field interface" below the banner:

image

Interestingly, when loaded manually (after startup.jl) in the otherwise same way, this does not happen:

image

KristofferC commented 3 months ago

Should be fixed by https://github.com/KristofferC/OhMyREPL.jl/pull/353

lassepe commented 3 months ago

You are right. I just double checked and the issue is indeed gone on master. Thanks! Sorry for the noise.