We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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