Commit 562e4497 authored by Andrew Dunstan's avatar Andrew Dunstan

Add tab completion for pager_min_lines to psql.

This was inadvertantly omitted from commit
7655f4cc. Mea culpa.

Backpatched to 9.5 where pager_min_lines was introduced.
parent bd1693e8
...@@ -3019,8 +3019,8 @@ psql_completion(const char *text, int start, int end) ...@@ -3019,8 +3019,8 @@ psql_completion(const char *text, int start, int end)
static const char *const my_list[] = static const char *const my_list[] =
{"border", "columns", "expanded", "fieldsep", "fieldsep_zero", {"border", "columns", "expanded", "fieldsep", "fieldsep_zero",
"footer", "format", "linestyle", "null", "numericlocale", "footer", "format", "linestyle", "null", "numericlocale",
"pager", "recordsep", "recordsep_zero", "tableattr", "title", "pager", "pager_min_lines", "recordsep", "recordsep_zero",
"tuples_only", "unicode_border_linestyle", "tableattr", "title", "tuples_only", "unicode_border_linestyle",
"unicode_column_linestyle", "unicode_header_linestyle", NULL}; "unicode_column_linestyle", "unicode_header_linestyle", NULL};
COMPLETE_WITH_LIST_CS(my_list); COMPLETE_WITH_LIST_CS(my_list);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment