From: Robert Haas Date: Wed, 16 Mar 2011 21:46:15 +0000 (-0400) Subject: Tab completion for \pset format and \pset linestyle. X-Git-Tag: REL9_1_ALPHA5~74 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ad3aff45f0d302b35d009e525de8a9d0ee9745a9;p=thirdparty%2Fpostgresql.git Tab completion for \pset format and \pset linestyle. Pavel Stehule --- diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c index 7019123725d..e72c5b9e994 100644 --- a/src/bin/psql/tab-complete.c +++ b/src/bin/psql/tab-complete.c @@ -2828,6 +2828,24 @@ psql_completion(char *text, int start, int end) COMPLETE_WITH_LIST(my_list); } + else if (strcmp(prev2_wd, "\\pset") == 0) + { + if (strcmp(prev_wd, "format") == 0) + { + static const char *const my_list[] = + {"unaligned", "aligned", "wrapped", "html", "latex", + "troff-ms", NULL}; + + COMPLETE_WITH_LIST(my_list); + } + else if (strcmp(prev_wd, "linestyle") == 0) + { + static const char *const my_list[] = + {"ascii", "old-ascii", "unicode", NULL}; + + COMPLETE_WITH_LIST(my_list); + } + } else if (strcmp(prev_wd, "\\set") == 0) { matches = complete_from_variables(text, "", "");