From 3804589a0c168ea799f47488f089232fa445dcd7 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Sat, 2 Jan 2016 17:41:37 +0000 Subject: [PATCH 1/1] client: Add completer for version command. This command gained the -v flag but the commit that introduced it last year (26dc18b2, Unify version command handlers) missed to provide the corresponding completer for para_client. --- client.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/client.c b/client.c index 35b49a16..34cc9189 100644 --- a/client.c +++ b/client.c @@ -204,7 +204,6 @@ I9E_DUMMY_COMPLETER(pause); I9E_DUMMY_COMPLETER(play); I9E_DUMMY_COMPLETER(si); I9E_DUMMY_COMPLETER(term); -I9E_DUMMY_COMPLETER(version); I9E_DUMMY_COMPLETER(stop); I9E_DUMMY_COMPLETER(addatt); I9E_DUMMY_COMPLETER(init); @@ -218,6 +217,13 @@ static void help_completer(struct i9e_completion_info *ci, result->matches = i9e_complete_commands(ci->word, completers); } +static void version_completer(struct i9e_completion_info *ci, + struct i9e_completion_result *cr) +{ + char *opts[] = {"-v", NULL}; + i9e_complete_option(opts, ci, cr); +} + static void stat_completer(struct i9e_completion_info *ci, struct i9e_completion_result *cr) { -- 2.39.2