From 5aba26f2cb7aa9609a3c3d2bd38a3942b6a378b8 Mon Sep 17 00:00:00 2001 From: nicm Date: Fri, 17 Apr 2020 08:03:22 +0000 Subject: Add a copy-command option and change copy-pipe and friends to pipe to it if used without arguments, allows all copy key bindings to be changed to pipe with one option. --- 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 33ee4402..1401f05d 100644 --- a/options-table.c +++ b/options-table.c @@ -198,6 +198,12 @@ const struct options_table_entry options_table[] = { .separator = "," }, + { .name = "copy-command", + .type = OPTIONS_TABLE_STRING, + .scope = OPTIONS_TABLE_SERVER, + .default_str = "" + }, + { .name = "default-terminal", .type = OPTIONS_TABLE_STRING, .scope = OPTIONS_TABLE_SERVER, -- cgit