python环境下使用tab自动补全命令

# vim /usr/lib/python2.7/dist-packages/tab.py

加入如下内容:

#!/usr/bin/env python 
# 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



测试:

# python
Python 2.7.3 (default, Aug  1 2012, 05:16:07) 
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> import tab
>>> sys.
sys.__class__(              sys.argv                    sys.hexversion
sys.__delattr__(            sys.builtin_module_names    sys.long_info
sys.__dict__                sys.byteorder               sys.maxint
sys.__displayhook__(        sys.call_tracing(           sys.maxsize
sys.__doc__                 sys.callstats(              sys.maxunicode
sys.__excepthook__(         sys.copyright               sys.meta_path
sys.__format__(             sys.displayhook(            sys.modules
sys.__getattribute__(       sys.dont_write_bytecode     sys.path
sys.__hash__(               sys.exc_clear(              sys.path_hooks
sys.__init__(               sys.exc_info(               sys.path_importer_cache
sys.__name__                sys.exc_type                sys.platform
sys.__new__(                sys.excepthook(             sys.prefix
sys.__package__             sys.exec_prefix             sys.ps1
sys.__reduce__(             sys.executable              sys.ps2
sys.__reduce_ex__(          sys.exit(                   sys.py3kwarning
sys.__repr__(               sys.exitfunc(               sys.pydebug
sys.__setattr__(            sys.flags                   sys.setcheckinterval(
sys.__sizeof__(             sys.float_info              sys.setdlopenflags(
sys.__stderr__              sys.float_repr_style        sys.setprofile(
sys.__stdin__               sys.getcheckinterval(       sys.setrecursionlimit(
sys.__stdout__              sys.getdefaultencoding(     sys.settrace(
sys.__str__(                sys.getdlopenflags(         sys.stderr
sys.__subclasshook__(       sys.getfilesystemencoding(  sys.stdin
sys._clear_type_cache(      sys.getprofile(             sys.stdout
sys._current_frames(        sys.getrecursionlimit(      sys.subversion
sys._getframe(              sys.getrefcount(            sys.version
sys._mercurial              sys.getsizeof(              sys.version_info
sys.api_version             sys.gettrace(               sys.warnoptions


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值