我想用 python 做一个能用 tab 键给出下一步提示的脚本,像 make+tab 那样的。
但我不知道用什么方法。
又不会把这个想法用英文表达出来,去 google 。
(python press tab key to pop up what to do next ?
俺英语说的不native,提出的问题,谷歌娘也理解不能。)
求各位提示啦。谢谢
1
ldbC5uTBj11yaeh5 2016-10-09 23:09:15 +08:00 1
给你看个 bbfreeze 的代码。 https://github.com/schmir/bbfreeze/blob/master/bbfreeze/py.py#L74 当然这货也是抄别人的。
注意关键字 rlcompleter 和 readline |
2
billlee 2016-10-10 00:25:29 +08:00 1
你是要在 python 里面起个 readline 来实现这个功能,还是外部的 shell 调用你的 python 时自动补全?如果是后者你需要的是 shell 脚本。
http://www.tldp.org/LDP/abs/html/tabexpansion.html |