From bdc039fbf5f7f990812e80ef2a73a796b8c46d3e Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 21 Apr 2022 14:51:23 +0530 Subject: [PATCH] Fix docstring --- kitty/boss.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/boss.py b/kitty/boss.py index 8f2890d07..9979d99a3 100644 --- a/kitty/boss.py +++ b/kitty/boss.py @@ -1570,7 +1570,7 @@ class Boss: def current_primary_selection_or_clipboard(self) -> str: return get_primary_selection() if supports_primary_selection else get_clipboard_string() - @ac('cp', 'Paste from the clipboard to the active window') + @ac('cp', 'Paste from the primary selection, if present, otherwise the clipboard to the active window') def paste_from_selection(self) -> None: text = self.current_primary_selection_or_clipboard() self.paste_to_active_window(text)