Python tab键命令补全
Posted 风追海浪
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python tab键命令补全相关的知识,希望对你有一定的参考价值。
pip install pyreadline import rlcompleter, readline readline.parse_and_bind(‘tab: complete‘) [email protected]-virtual-machine:/usr/lib/python2.7/dist-packages# cat tab.py import rlcompleter import readline import atexit import os # http://stackoverflow.com/questions/7116038/python-tab-completion-mac-osx-10-7-lion if‘libedit‘in readline.__doc__: readline.parse_and_bind(‘bind ^I rl_complete‘) else: readline.parse_and_bind(‘tab: complete‘) histfile = os.path.join(os.environ[‘HOME‘],‘.pyhist‘) try: readline.read_history_file(histfile) except IOError: pass atexit.register(readline.write_history_file, histfile) del readline, rlcompleter, histfile, os
以上是关于Python tab键命令补全的主要内容,如果未能解决你的问题,请参考以下文章