From fa601ed607300f0884306493d9ddfdbde6bff11d Mon Sep 17 00:00:00 2001 From: Gregory Pakosz Date: Wed, 26 Oct 2022 09:16:40 +0200 Subject: [PATCH] bind p to paste-buffer -p to match tmux defaults, closes #610 see https://github.com/tmux/tmux/issues/2248#issuecomment-638329932 --- .tmux.conf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.tmux.conf b/.tmux.conf index b8c30c9..77b3b51 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -162,9 +162,9 @@ if -b '[ -c /dev/clipboard ]' 'bind y run -b "tmux save-buffer - > /dev/clipboar # -- buffers ------------------------------------------------------------------- -bind b list-buffers # list paste buffers -bind p paste-buffer # paste from the top paste buffer -bind P choose-buffer # choose which buffer to paste from +bind b list-buffers # list paste buffers +bind p paste-buffer -p # paste from the top paste buffer +bind P choose-buffer # choose which buffer to paste from # -- 8< ------------------------------------------------------------------------