qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH V5 6/7] monitor: improve "help" in auto completi


From: Wenchao Xia
Subject: Re: [Qemu-devel] [PATCH V5 6/7] monitor: improve "help" in auto completion for sub command
Date: Wed, 10 Jul 2013 14:46:55 +0800
User-agent: Mozilla/5.0 (Windows NT 5.1; rv:17.0) Gecko/20130620 Thunderbird/17.0.7

于 2013-7-9 0:09, Luiz Capitulino 写道:
On Sat, 29 Jun 2013 11:53:00 +0800
Wenchao Xia <address@hidden> wrote:

Now special case "help *" in auto completion can work with sub commands,
such as "help info a*".

The auto-completion works, but the command is still refused:

(qemu) help info u
usb       usbhost   usernet   uuid
(qemu) help info uuid
help: extraneous characters at the end of line

This is not hugely important, but I think it would make more sense
to make the command work before having auto-completion support.

  Patch 7 fix it, I will adjust the patch sequence.



Signed-off-by: Wenchao Xia <address@hidden>
---
  monitor.c |    6 ++----
  1 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/monitor.c b/monitor.c
index 2f5b91d..3ef18ee 100644
--- a/monitor.c
+++ b/monitor.c
@@ -4283,10 +4283,8 @@ static void monitor_find_completion_by_table(Monitor 
*mon,
                      cmd_completion(mon, str, QKeyCode_lookup[i]);
                  }
              } else if (!strcmp(cmd->name, "help|?")) {
-                readline_set_completion_index(mon->rs, strlen(str));
-                for (cmd = mon->cmd_table; cmd->name != NULL; cmd++) {
-                    cmd_completion(mon, str, cmd->name);
-                }
+                monitor_find_completion_by_table(mon, cmd_table,
+                                                 args_cmdline[1]);
              }
              break;
          default:



--
Best Regards

Wenchao Xia




reply via email to

[Prev in Thread] Current Thread [Next in Thread]