From 92289052cad7da653c756584b2951a4d44d975b7 Mon Sep 17 00:00:00 2001 From: Julian Prein Date: Mon, 21 Oct 2024 12:58:04 +0200 Subject: [PATCH] tmux: Make `[hjkl]` not repeatable This is more than often annoying. For example when switching from a fzf pane to a vim pane (i.e. needing these bindings instead of `C-[hjkl]`) and then trying to move the cursor. Reverts: 048933e67de ("tmux: Make `[hjkl]` bindings repeatable") --- .config/tmux/tmux.conf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf index 603ea47..9c450d7 100644 --- a/.config/tmux/tmux.conf +++ b/.config/tmux/tmux.conf @@ -279,10 +279,10 @@ if -F "#{<:#{version},3.4}" { # NOTE: C-[hjkl] (w/o prefix) moves through vim splits and tmux panes # See vim-tmux-navigator unbind l -bind -r h selectp -L -bind -r j selectp -D -bind -r k selectp -U -bind -r l selectp -R +bind h selectp -L +bind j selectp -D +bind k selectp -U +bind l selectp -R # Resize mode similar to my i3 config bind -T resize h resizep -L \; switchc -T resize