diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c new file mode 100644 index 021b6c5..24a5c69 *** a/src/bin/psql/tab-complete.c --- b/src/bin/psql/tab-complete.c *************** psql_completion(char *text, int start, i *** 3306,3314 **** else if (strcmp(prev_wd, "\\pset") == 0) { static const char *const my_list[] = ! {"format", "border", "expanded", ! "null", "fieldsep", "tuples_only", "title", "tableattr", ! "linestyle", "pager", "recordsep", NULL}; COMPLETE_WITH_LIST_CS(my_list); } --- 3306,3315 ---- else if (strcmp(prev_wd, "\\pset") == 0) { 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", NULL}; COMPLETE_WITH_LIST_CS(my_list); }