From ce7eb22e3abacc0cb74124468b27a1e7d765ccef Mon Sep 17 00:00:00 2001 From: nicm Date: Wed, 17 Dec 2025 10:20:21 +0000 Subject: [PATCH] Do not have a default prompt cursor colour because some terminals (urxvt, st) do not support the reset sequence. GitHub issue 4759. --- options-table.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/options-table.c b/options-table.c index b328a57f..4385c9fd 100644 --- a/options-table.c +++ b/options-table.c @@ -959,7 +959,7 @@ const struct options_table_entry options_table[] = { { .name = "prompt-cursor-colour", .type = OPTIONS_TABLE_COLOUR, .scope = OPTIONS_TABLE_SESSION, - .default_num = 6, + .default_num = -1, .text = "Colour of the cursor when in the command prompt." },