doc(config): add copy-command examples to default config (PR #996) (#1019)

This commit is contained in:
Jordan Callicoat 2022-01-20 10:36:59 -06:00 committed by GitHub
parent ddbf16e1b3
commit 5f86dc4fd0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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