Infiltrator.jl icon indicating copy to clipboard operation
Infiltrator.jl copied to clipboard

Tab completion doesn't complete dictionary keys

Open staticfloat opened this issue 3 months ago • 0 comments

I notice that tab'ing lists possible completions above the infiltrator line, but no amount of tab'ing actually completes a dictionary key:

julia> using Infiltrator
       d = Dict("a very long key" => true)
       @infiltrate
Infiltrating top-level frame

infil> d["a
"a very long key"]
infil> d["a
"a very long key"]
infil> d["a
"a very long key"]
infil>

Whereas this does work at the main REPL.

staticfloat avatar Sep 23 '25 14:09 staticfloat