summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJordan Callicoat <jordan.callicoat@rackspace.com>2022-01-20 10:36:59 -0600
committerGitHub <noreply@github.com>2022-01-20 17:36:59 +0100
commit5f86dc4fd0542e5db22c0263fdaac8cb0309b440 (patch)
treed19ac78c38b7c492b6040081dfd39e2d856999c8
parentddbf16e1b30dba87f76d34b2ad52dcf869bb00be (diff)
doc(config): add copy-command examples to default config (PR #996) (#1019)
-rw-r--r--zellij-utils/assets/config/default.yaml9
1 files changed, 9 insertions, 0 deletions
diff --git a/zellij-utils/assets/config/default.yaml b/zellij-utils/assets/config/default.yaml
index 131769737..749f7f8f2 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