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']
ます。どうすれば注文を強制的に守らせることができますか?