How to autocomplete list of all arguments to function in PyCharm?
I want to autocomplete arguments for function like in PyDev.
def do(a, b, c):
pass
After typing do(<cursor here>)
I want to autocomplete to do(a, b, c)
- is it possible in PyCharm or hidden too much. It is very useful in large programs.
Now I can autocomplete single argument but it is not enough.