Santhosh Balasa
Santhosh Balasa

Reputation: 184

Python autocompletion/autosuggestion on GNU/Linux

Assume you imported a package, say unittest2 if you were using Windows IDLE, if you press: unittest2. a small help window will pop up and show the list of functions you can use, similarly how can I get this small pop up on linux ?

Am accessing a linux box from putty

Upvotes: 0

Views: 113

Answers (2)

xb.
xb.

Reputation: 1677

Here is a few of many editors you might use in the Linux:

For python IDE:

PyCharm: https://www.jetbrains.com/pycharm/help/auto-completing-code.html

For generic editors:

vi/vim: http://vim.wikia.com/wiki/Any_word_completion

emacs: http://emacswiki.org/emacs/AutoComplete

BTW, if in the Python interpreter:

http://conjurecode.com/enable-auto-complete-in-python-interpreter/

Upvotes: 1

mainframer
mainframer

Reputation: 22149

If you want to use IDE, then Pycharm should be what you are looking for . Please refer to download and install it.

If you are using Vim editor, then python-mode plugin will do all this jobs for you. Please see this picture: enter image description here.

Upvotes: 1

Related Questions