From 162e228142bec5e561f82acf23ee44be935ea59d Mon Sep 17 00:00:00 2001 From: David Chen Date: Wed, 29 Oct 2025 13:46:53 -0700 Subject: [PATCH] tmux ctrl-u + ctrl-e bindings in visual mode --- .tmux.conf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.tmux.conf b/.tmux.conf index b08f219..97c8b1b 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -293,3 +293,7 @@ bind -n F5 run-shell "~/.config/tmux/scripts/switch_session_by_index.sh 5" set -g default-terminal "tmux-256color" set -as terminal-features ",*256col*:RGB" set -as terminal-overrides ",*256col*:Tc" +unbind -T copy-mode-vi C-u +unbind -T copy-mode-vi C-e +bind -T copy-mode-vi C-u send-keys -N 5 -X scroll-up +bind -T copy-mode-vi C-e send-keys -N 5 -X scroll-down