在python解释器中我们可以使用
readline.parse_and_bind('tab: complete')
启用选项卡完成
是否可以将任意键绑定到我们自己的函数?
我想将 CTRL+E 和 CTRL+SHIFT+E 分别绑定到 edit_history() 和 edit_history(True) ,其中 edit_history() 是我自己在 .pythonrc 中定义的函数
def edit_history(fork=False):
import readline
timeStamp = time.strftime("%Y%m%d-%H%M%S")
tmpFile = '/tmp/pyHistory.%s' % timeStamp
readline.write_history_file(tmpFile)
if not fork:
os.system('gvim -f %s' % tmpFile)
readline.clear_history()
readline.read_history_file(tmpFile)
os.unlink(tmpFile)
else:
os.system('gvim %s' % tmpFile)
任何指针将不胜感激
谢谢,
达多