码迷,mamicode.com
首页 > 编程语言 > 详细

Linux 下python 如何设置使用tab键

时间:2014-12-25 18:40:10      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:linux   python   tab   

  1. 首先在家目录下创建一个隐藏文件,vi ~/.pythonstartup,内容如下:


# python startup file

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


2.设置bash环境变量:

vi /root/.bash_profile

在文件的最后加入一句:

export PYTHONSTARTUP=~/.pythonstartup


3.重启计算机,reboot,然后就可以使用tab键的自动补全功能了。


本文出自 “天天向上” 博客,请务必保留此出处http://6218759.blog.51cto.com/6208759/1595990

Linux 下python 如何设置使用tab键

标签:linux   python   tab   

原文地址:http://6218759.blog.51cto.com/6208759/1595990

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!