From 66dc98c747494efe01d05d7e1dd721e36c8d4996 Mon Sep 17 00:00:00 2001 From: Alex Karle Date: Tue, 22 Feb 2022 10:02:23 -0500 Subject: [PATCH] tmux: Use xclip(1) instead of xterm(1) clipboard escapes I have xclip(1) installed on all my systems, and st(1) doesn't seem to support the xterm(1) clipboard escape sequences that tmux is trying to use by default! This patch disables the escape sequences and uses xclip instead! --- .tmux.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.tmux.conf b/.tmux.conf index 8ed3f2c..641e80a 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -2,6 +2,8 @@ set-option -g history-limit 10000 set-option -g mode-keys vi set-option -g mouse on +set-option -g set-clipboard off +set-option -g copy-command 'xclip -in -selection clipboard' # better prefix set-option -g prefix C-a -- libgit2 1.1.1