网站地图    收藏   

主页 > 后端 > PHP语言 >

配置python命令tab键自动补全_自学php网

来源:自学PHP网    时间:2014-12-04 21:50 作者: 阅读:

[导读] 1.创建tab.py文件并编辑为如下: # python startup file import sys import readline import rlcompleter import atexit import os # tab completion readline.parse_and_bind(tab: complete) # history file histfile = os.path.join(os.environ['...

1.创建tab.py文件并编辑为如下:

# python startup file
import sys
import readline
import rlcompleter
import atexit
import os

# tab completion
readline.parse_and_bind(‘tab: complete’)
# history file
histfile = os.path.join(os.environ['HOME'], ‘.pythonhistory’)
try:
readline.read_history_file(histfile)
except IOError:
pass
atexit.register(readline.write_history_file, histfile)

del os, histfile, readline, rlcompleter

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论