1

无论我做什么,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']。如何强制保留我的订单?

4

1 回答 1

1

有专门的选项:rl_sort_completion_matches。它按字典顺序对选项进行排序,并删除重复项 - 因此,如果您覆盖它,您需要自己处理重复项。

但是,它不能从 Python 的绑定中访问。

幸运的是,这并不意味着你不能让它工作——你可以使用cdllor来改变它ctypes。由于它是一个全局变量而不是一个函数,我将使用in_dll方法:

import ctypes
rl = ctypes.cdll.LoadLibrary('libreadline.so')
sort = ctypes.c_ulong.in_dll(rl, 'rl_sort_completion_matches')
sort.value = 0

在此之后,应以正确的顺序检索匹配项。

不幸的是,这不是一种非常便携的方法——例如,在 Windows 中,您应该使用.dll后缀而不是 Linux 的.so. 但是,关注ctypes可移植性超出了此答案的范围。

于 2015-07-05T11:03:59.440 回答