Python交互模式下代码自动补全

这个功能是以lib的形式提供的,配置写到home下的.pythonrc文件中, 并设置好环境变量让python启动时执行初始化:

# ~/.pythonrc
# enable syntax completion

# add the next line to your ~/.bashrc
# export PYTHONSTARTUP=~/.pythonrc
try:
    import readline
except ImportError:
    print("Module readline not available.")
else:
    import rlcompleter
    readline.parse_and_bind("tab: complete")
    readline.parse_and_bind('''control-l:"    "''')

最后一行是绑定control和"L"健,自动补四个空格作缩进。因为tab键已经被征用了,所以只能用其它组合健作缩进。

posted on 2017-01-11 16:03  Digital_life  阅读(1493)  评论(0编辑  收藏  举报

导航