Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to autocomplete list of all arguments to function in PyCharm?

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.

like image 224
Chameleon Avatar asked Nov 09 '22 06:11

Chameleon


1 Answers

according to documentation (https://www.jetbrains.com/help/pycharm/2016.1/auto-completing-code.html)

you can do these things in PyCharm to help with autocompletion of code -- which is what i'm understanding you to need help with:

  • Basic code completion on ⌃Space.
  • Type completion on ⌃⇧Space.
  • Completing punctuation on ⏎.
  • Completing statements with smart ⏎.
  • Completing paths in the Select Path dialog.
  • Expanding words with ⌥/.

see documentation link above for more detailed info on each. lots of pictures and help for each of the above. hope this helps.

like image 132
matias elgart Avatar answered Nov 14 '22 22:11

matias elgart