From 307b2f01488ae0fab18a8f0538e7c750842e74dd Mon Sep 17 00:00:00 2001 From: Hani Benhabiles Date: Thu, 1 May 2014 15:26:42 +0100 Subject: [PATCH] readline: Sort completions before printing them. Signed-off-by: Hani Benhabiles Signed-off-by: Michael Tokarev --- util/readline.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/util/readline.c b/util/readline.c index a3fd2cb466..8baec55509 100644 --- a/util/readline.c +++ b/util/readline.c @@ -272,6 +272,11 @@ void readline_set_completion_index(ReadLineState *rs, int index) rs->completion_index = index; } +static int completion_comp(const void *a, const void *b) +{ + return strcmp(*(const char **) a, *(const char **) b); +} + static void readline_completion(ReadLineState *rs) { int len, i, j, max_width, nb_cols, max_prefix; @@ -295,6 +300,8 @@ static void readline_completion(ReadLineState *rs) if (len > 0 && rs->completions[0][len - 1] != '/') readline_insert_char(rs, ' '); } else { + qsort(rs->completions, rs->nb_completions, sizeof(char *), + completion_comp); rs->printf_func(rs->opaque, "\n"); max_width = 0; max_prefix = 0;