diff options
author | Andrew Dunstan | 2016-06-23 20:10:15 +0000 |
---|---|---|
committer | Andrew Dunstan | 2016-06-23 20:10:15 +0000 |
commit | 562e44972490196884452e632a0a6d0db81b2335 (patch) | |
tree | 315ff2cfef7e4b0acdab8dcc38c10927cdbbf9df | |
parent | bd1693e89e7e6c458d0563f6cc67a7c99a45251a (diff) |
Add tab completion for pager_min_lines to psql.
This was inadvertantly omitted from commit
7655f4ccea570d57c4d473cd66b755c03c904942. Mea culpa.
Backpatched to 9.5 where pager_min_lines was introduced.
-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 8de8a3d0f9c..8469d9ff03d 100644 --- a/src/bin/psql/tab-complete.c +++ b/src/bin/psql/tab-complete.c @@ -3019,8 +3019,8 @@ psql_completion(const char *text, int start, int end) static const char *const my_list[] = {"border", "columns", "expanded", "fieldsep", "fieldsep_zero", "footer", "format", "linestyle", "null", "numericlocale", - "pager", "recordsep", "recordsep_zero", "tableattr", "title", - "tuples_only", "unicode_border_linestyle", + "pager", "pager_min_lines", "recordsep", "recordsep_zero", + "tableattr", "title", "tuples_only", "unicode_border_linestyle", "unicode_column_linestyle", "unicode_header_linestyle", NULL}; COMPLETE_WITH_LIST_CS(my_list); |