- 
          
- 
                Notifications
    You must be signed in to change notification settings 
- Fork 5.7k
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 replhelp wantedIndicates that a maintainer wants help on an issue or pull requestIndicates that a maintainer wants help on an issue or pull requestregression 1.11Regression in the 1.11 releaseRegression in the 1.11 releaseregression 1.12Regression in the 1.12 releaseRegression in the 1.12 release
Description
Hi!
In Julia 1.11.5, the following works:
julia> @kwdef struct Test
           first = 2
           second = 3
       end
Test
julia> Test(; fi<TAB>
julia> Test(; first=i.e., if you press TAB it correctly auto-completes the field name.
In Julia 1.11.6, on the other hand, we have:
julia> @kwdef struct Test
           first = 2
           second = 3
       end
Test
julia> Test(; fi<TAB>
fieldcount   fieldname    fieldnames   fieldoffset  fieldtype    fieldtypes
filemode     filesize     fill         fill!        filter       filter!
finalize     finalizer    finally      findall      findfirst    findlast
findmax      findmax!     findmin      findmin!     findnext     findprev
first        firstindexI am pretty sure that the correct behavior should be the first one.
camilodlt
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 replhelp wantedIndicates that a maintainer wants help on an issue or pull requestIndicates that a maintainer wants help on an issue or pull requestregression 1.11Regression in the 1.11 releaseRegression in the 1.11 releaseregression 1.12Regression in the 1.12 releaseRegression in the 1.12 release