From f59921ce184d27b4f11c62a4914bc2a8441b4667 Mon Sep 17 00:00:00 2001 From: nicm Date: Fri, 26 Jun 2026 12:52:36 +0000 Subject: [PATCH] Use underscore for current in status line. --- options-table.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/options-table.c b/options-table.c index 71c8b1377..f73335681 100644 --- a/options-table.c +++ b/options-table.c @@ -1152,7 +1152,7 @@ const struct options_table_entry options_table[] = { { .name = "pane-status-current-style", .type = OPTIONS_TABLE_STRING, .scope = OPTIONS_TABLE_WINDOW, - .default_str = "default", + .default_str = "underscore", .flags = OPTIONS_TABLE_IS_STYLE, .separator = ",", .text = "Style of the current pane in the status line." @@ -1205,7 +1205,7 @@ const struct options_table_entry options_table[] = { { .name = "session-status-current-style", .type = OPTIONS_TABLE_STRING, .scope = OPTIONS_TABLE_WINDOW, - .default_str = "default", + .default_str = "underscore", .flags = OPTIONS_TABLE_IS_STYLE, .separator = ",", .text = "Style of the current session in the status line." @@ -1803,7 +1803,7 @@ const struct options_table_entry options_table[] = { { .name = "window-status-current-style", .type = OPTIONS_TABLE_STRING, .scope = OPTIONS_TABLE_WINDOW, - .default_str = "default", + .default_str = "underscore", .flags = OPTIONS_TABLE_IS_STYLE, .separator = ",", .text = "Style of the current window in the status line."