From aa8156a7fda4e65cbe52b0a6186e373b7947e652 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 23 Jul 2021 22:28:34 +0530 Subject: [PATCH] Remove mentions of no-append --- docs/faq.rst | 4 ---- kitty/options/definition.py | 10 ++++------ 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/docs/faq.rst b/docs/faq.rst index 0fb09a902..8196a6dfe 100644 --- a/docs/faq.rst +++ b/docs/faq.rst @@ -304,10 +304,6 @@ terminal and then switch to another and these terminals have different TERM variables, tmux will break. You will need to restart it as tmux does not support multiple terminfo definitions. -Copying to clipboard via OSC 52 will not work, because tmux does not support -the extended version of that protocol, you will need to add ``no-append`` to -:opt:`clipboard_control` in kitty.conf. - If you use any of the advanced features that kitty has innovated, such as styled underlines, desktop notifications, extended keyboard support, etc. they may or may not work, depending on the whims of tmux's maintainer, your diff --git a/kitty/options/definition.py b/kitty/options/definition.py index 4d622ee6c..1a9bec6a8 100644 --- a/kitty/options/definition.py +++ b/kitty/options/definition.py @@ -2508,12 +2508,10 @@ opt('clipboard_control', 'write-clipboard write-primary', long_text=''' Allow programs running in kitty to read and write from the clipboard. You can control exactly which actions are allowed. The set of possible actions is: -write-clipboard read-clipboard write-primary read-primary. You can additionally -specify no-append to disable kitty's protocol extension for clipboard -concatenation. The default is to allow writing to the clipboard and primary -selection with concatenation enabled. Note that enabling the read functionality -is a security risk as it means that any program, even one running on a remote -server via SSH can read your clipboard. +write-clipboard read-clipboard write-primary read-primary. The default is to +allow writing to the clipboard and primary selection. Note that enabling the +read functionality is a security risk as it means that any program, even one +running on a remote server via SSH can read your clipboard. ''' )