背景
嗨,我正在尝试在 readline 中为我的选项卡完成输出编写自定义显示。这是我的display hook
功能-
代码
def match_display_hook(self, substitution, matches, longest_match_length):
print ''
for match in matches:
print match
readline.redisplay()
问题
但问题是我必须按回车键才能获得提示,这与默认选项卡完成输出不同,我可以立即获得提示。我看到rl
另一个线程中有人建议了模块,但是没有办法通过 readline 本身完成它吗?