Skip to content

Commit b4e6123

Browse files
committed
Add tab completion for pager_min_lines to psql.
This was inadvertantly omitted from commit 7655f4c. Mea culpa. Backpatched to 9.5 where pager_min_lines was introduced.
1 parent f2c28bb commit b4e6123

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bin/psql/tab-complete.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3858,8 +3858,8 @@ psql_completion(const char *text, int start, int end)
38583858
static const char *const my_list[] =
38593859
{"border", "columns", "expanded", "fieldsep", "fieldsep_zero",
38603860
"footer", "format", "linestyle", "null", "numericlocale",
3861-
"pager", "recordsep", "recordsep_zero", "tableattr", "title",
3862-
"tuples_only", "unicode_border_linestyle",
3861+
"pager", "pager_min_lines", "recordsep", "recordsep_zero",
3862+
"tableattr", "title", "tuples_only", "unicode_border_linestyle",
38633863
"unicode_column_linestyle", "unicode_header_linestyle", NULL};
38643864

38653865
COMPLETE_WITH_LIST_CS(my_list);

0 commit comments

Comments
 (0)