无论我做什么,GNU/readline 似乎都会对我的数据进行排序。我的代码看起来就像在文档中一样:
tags = [tag.lower() for tag in tags]
def completer(text, state):
text = text.lower()
options = [tag for tag in tags if tag.startswith(text)]
try:
return options[state]
except IndexError:
return None
readline.set_completer(completer)
readline.parse_and_bind('tab: menu-complete')
如果我的标签是['jarre', 'abba', 'beatles']
,我不断得到['abba', 'beatles', 'jarre']
。如何强制保留我的订单?