From 5f86dc4fd0542e5db22c0263fdaac8cb0309b440 Mon Sep 17 00:00:00 2001 From: Jordan Callicoat Date: Thu, 20 Jan 2022 10:36:59 -0600 Subject: [PATCH] doc(config): add copy-command examples to default config (PR #996) (#1019) --- zellij-utils/assets/config/default.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/zellij-utils/assets/config/default.yaml b/zellij-utils/assets/config/default.yaml index 13176973..749f7f8f 100644 --- a/zellij-utils/assets/config/default.yaml +++ b/zellij-utils/assets/config/default.yaml @@ -468,3 +468,12 @@ plugins: # Valid values: positive integers # Default value: 10000 #scroll_buffer_size: 10000 + +# Provide a command to execute when copying text. The text will be piped to +# the stdin of the program to perform the copy. This can be used with +# terminal emulators which do not support the OSC 52 ANSI control sequence +# that will be used by default if this option is not set. +# Examples: +#copy_command: "xclip -selection clipboard" # x11 +#copy_command: "wl-copy" # wayland +#copy_command: "pbcopy" # osx