aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--status.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/status.c b/status.c
index 42382578..535044ad 100644
--- a/status.c
+++ b/status.c
@@ -1130,6 +1130,10 @@ status_prompt_complete(const char *s)
if (strncmp((*cmdent)->name, s, strlen(s)) == 0)
ARRAY_ADD(&list, (*cmdent)->name);
}
+ for (entry = set_option_table; entry->name != NULL; entry++) {
+ if (strncmp(entry->name, s, strlen(s)) == 0)
+ ARRAY_ADD(&list, entry->name);
+ }
for (entry = set_session_option_table; entry->name != NULL; entry++) {
if (strncmp(entry->name, s, strlen(s)) == 0)
ARRAY_ADD(&list, entry->name);