Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

REPL should auto-complete keyword arguments #43437

Closed
ronisbr opened this issue Dec 16, 2021 · 0 comments · Fixed by #43536
Closed

REPL should auto-complete keyword arguments #43437

ronisbr opened this issue Dec 16, 2021 · 0 comments · Fixed by #43536
Labels
feature Indicates new feature / enhancement requests keyword arguments f(x; keyword=arguments) REPL Julia's REPL (Read Eval Print Loop)

Comments

@ronisbr
Copy link
Member

ronisbr commented Dec 16, 2021

Hi!

I think a very nice feature would be if REPL can auto-complete keywords arguments. For example, let's say I have the following function:

function test(; key1, key2, key3)
       return nothing
end

In REPL, if I press TAB in this condition:

julia> test(; key

It should show me as options key1, key2, and key3.

@oscardssmith oscardssmith added feature Indicates new feature / enhancement requests REPL Julia's REPL (Read Eval Print Loop) labels Dec 16, 2021
@ararslan ararslan added the keyword arguments f(x; keyword=arguments) label Dec 18, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature Indicates new feature / enhancement requests keyword arguments f(x; keyword=arguments) REPL Julia's REPL (Read Eval Print Loop)
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants