Skip to content

Instantly share code, notes, and snippets.

@paraita
Last active December 14, 2015 09:29
Show Gist options
  • Save paraita/5065118 to your computer and use it in GitHub Desktop.
Save paraita/5065118 to your computer and use it in GitHub Desktop.
pythonstartup.py (voir zshrc linux)
try:
import readline
except ImportError:
print("Module readline not available.")
else:
import rlcompleter
readline.parse_and_bind("tab: complete")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment