ruby-lsp
ruby-lsp copied to clipboard
Provide completion for keyword arguments in method calls
If we know exactly which method the user is currently typing, we can provide completion for the keyword arguments required to invoke that method.
E.g.:
class Foo
def bar(a:, b:)
end
def baz
baz()
#^^ when the cursor is here we can show `a` and `b` as possible symbol completions
end
end
This issue is being marked as stale because there was no activity in the last 2 months
Hi! I'm looking into this one. Still digging but I'll try to make a pr soon!