Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 562e449

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 bd1693e commit 562e449

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bin/psql/tab-complete.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -3019,8 +3019,8 @@ psql_completion(const char *text, int start, int end)
30193019
static const char *const my_list[] =
30203020
{"border", "columns", "expanded", "fieldsep", "fieldsep_zero",
30213021
"footer", "format", "linestyle", "null", "numericlocale",
3022-
"pager", "recordsep", "recordsep_zero", "tableattr", "title",
3023-
"tuples_only", "unicode_border_linestyle",
3022+
"pager", "pager_min_lines", "recordsep", "recordsep_zero",
3023+
"tableattr", "title", "tuples_only", "unicode_border_linestyle",
30243024
"unicode_column_linestyle", "unicode_header_linestyle", NULL};
30253025

30263026
COMPLETE_WITH_LIST_CS(my_list);

0 commit comments

Comments
 (0)