From 78595457f965975cf5a24e8bbab6dcb153020b6e Mon Sep 17 00:00:00 2001 From: nicm Date: Sat, 16 May 2020 15:24:28 +0000 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 a89758c5..5ca63a78 100644 --- a/options-table.c +++ b/options-table.c @@ -210,6 +210,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