-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Labels
bugIndicates an unexpected problem or unintended behaviorIndicates an unexpected problem or unintended behaviorcompletionsTab and autocompletion in the replTab and autocompletion in the repl
Description
I feel like I discussed this with people before but there isn't an issue:
~> julia +1.9 -q
julia> nt = (col1 = 5, secondcol = 6)
(col1 = 5, secondcol = 6)
julia> nt.col1 = nt.sec<TAB> # autocompletes
julia> exit()
~> julia +1.10 -q
julia> nt = (col1 = 5, secondcol = 6)
(col1 = 5, secondcol = 6)
julia> nt.col1 = nt.sec<TAB> # crickets
Still broken on 1.11.3, so I assume this is a JuliaSyntax thing?
Metadata
Metadata
Assignees
Labels
bugIndicates an unexpected problem or unintended behaviorIndicates an unexpected problem or unintended behaviorcompletionsTab and autocompletion in the replTab and autocompletion in the repl