Tab completion for Python
4:42pm on Nov 17, 2011
I just discovered this. So cool!
1 2 3 | import readline import rlcompleter readline.parse_and_bind("tab: complete") |
Put that in a startup file you use with $PYTHONSTARTUP.
I just discovered this. So cool!
1 2 3 | import readline import rlcompleter readline.parse_and_bind("tab: complete") |
Put that in a startup file you use with $PYTHONSTARTUP.