From cc19203be2aab1adc4930b18e46d522005159412 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Fri, 1 May 2020 09:02:44 +0100 Subject: Add 'e' key in buffer mode to open the buffer in an editor. --- options-table.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'options-table.c') diff --git a/options-table.c b/options-table.c index e04002ff..b4aa47e2 100644 --- a/options-table.c +++ b/options-table.c @@ -209,6 +209,12 @@ const struct options_table_entry options_table[] = { .default_str = "screen" }, + { .name = "editor", + .type = OPTIONS_TABLE_STRING, + .scope = OPTIONS_TABLE_SERVER, + .default_str = _PATH_VI + }, + { .name = "escape-time", .type = OPTIONS_TABLE_NUMBER, .scope = OPTIONS_TABLE_SERVER, -- cgit