Python cmd自动完成:在单独的行上显示选项

问题描述 投票:1回答:1

我正在使用cmd模块以Python编写CLI,该模块使用readline模块提供自动完成功能。自动完成功能在同一行显示不同的选项,而我希望它们在不同的行,并且我在cmd中找不到任何允许我执行此操作的参数。

这是一个示例程序:

import cmd

class mycmd(cmd.Cmd):
    def __init__(self):
        cmd.Cmd.__init__(self)

    def do_quit(self, s):
        return True

    def do_add(self, s):
        pass

    def do_addition(self, s):
        pass

    def complete_add(self, text, line, begidx, endidx):
        params = ['asd', 'asdasd', 'lol']
        return [s for s in params if s.startswith(text)]

if __name__ == '__main__':
    mycmd().cmdloop()

这是结果:

(Cmd) <tab> <tab>
add       addition  help      quit   <-- I want these on different lines
(Cmd) add<tab> <tab>
add       addition                   <-- 
(Cmd) add <tab> <tab>
asd     asdasd  lol                  <-- 
(Cmd) add asd<tab> <tab>
asd     asdasd                       <-- 

如果在每个自动完成选项的末尾添加一个行分隔符,则会得到以下提示:

(Cmd) add <tab> <tab>
asd^J     asdasd^J  lol^J    

无论如何,这不会解决命令的自动完成,仅解决参数的问题。

有什么建议吗?

感谢您的帮助!

python cmd command-line-interface readline
1个回答
0
投票

您需要接管readline的显示功能。为此,请import readline,将此添加到您的__init__

        readline.set_completion_display_matches_hook(self.match_display_hook)

并将其添加到您的班级:

    def match_display_hook(self, substitution, matches, longest_match_length):
        print()
        for match in matches:
            print(match)
        print(self.prompt, readline.get_line_buffer(), sep='', end='', flush=True)
© www.soinside.com 2019 - 2024. All rights reserved.