-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Open
Labels
REPLJulia's REPL (Read Eval Print Loop)Julia's REPL (Read Eval Print Loop)completionsTab and autocompletion in the replTab and autocompletion in the repl
Description
The symptoms are the same as described here #54131 but the fix does not work in our case. Tried on macOS, Linux with Julia 1.11.0 to 1.11.5, no issues with older versions.
The reproducer in our case requires two packages from our own repository though:
julia> using Pkg; Pkg.Registry.add(); Pkg.Registry.add(RegistrySpec(url = "https://git.km3net.de/common/julia-registry"))
julia> Pkg.add(name="KM3io", version="0.18.8")
julia> Pkg.add("KM3NeTTestData") # version doesn't matter, it's just sample files
This is the code:
julia> using KM3io, KM3NeTTestData
julia> f = ROOTFile(datapath("offline", "numucc.root"))
ROOTFile{OnlineTree (0 events, 0 summaryslices), OfflineTree (10 events)}
julia> f.offline[1].
The freeze is triggered when typing f.offline[1].
. When the dot
is pressed, it hangs for several seconds and each keystroke introduces a new freeze (except for the backspace).
Let me know if I can provide anything else!
Moelf
Metadata
Metadata
Assignees
Labels
REPLJulia's REPL (Read Eval Print Loop)Julia's REPL (Read Eval Print Loop)completionsTab and autocompletion in the replTab and autocompletion in the repl