diff options
author | Bruce Momjian | 2015-03-31 15:33:25 +0000 |
---|---|---|
committer | Bruce Momjian | 2015-03-31 15:33:25 +0000 |
commit | 9d9991c84e64c0c5f568b3cdaf46bb91a1368b5a (patch) | |
tree | 3c9464838f27188885266bb0f190e4c3ea7f1e1b /src/bin/psql/tab-complete.c | |
parent | 0cf16b44cb749cac2ff9dcbbe92bfb94f72bb0d0 (diff) |
psql: add asciidoc output format
Patch by Szymon Guz, adjustments by me
Testing by Michael Paquier, Pavel Stehule
Diffstat (limited to 'src/bin/psql/tab-complete.c')
-rw-r--r-- | src/bin/psql/tab-complete.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c index e39a07caf13..dfcb66ba6de 100644 --- a/src/bin/psql/tab-complete.c +++ b/src/bin/psql/tab-complete.c @@ -3790,8 +3790,8 @@ psql_completion(const char *text, int start, int end) if (strcmp(prev_wd, "format") == 0) { static const char *const my_list[] = - {"unaligned", "aligned", "wrapped", "html", "latex", - "troff-ms", NULL}; + {"unaligned", "aligned", "wrapped", "html", "asciidoc", + "latex", "latex-longtable", "troff-ms", NULL}; COMPLETE_WITH_LIST_CS(my_list); } |