From 915273a7310ce40ebaa335f19d2dd39e198c8776 Mon Sep 17 00:00:00 2001 From: Parham Alvani Date: Fri, 13 Dec 2024 15:20:12 +0000 Subject: [PATCH] feat: continue forcing myself to not use arrow keys --- tmux/tmux/tmux.conf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tmux/tmux/tmux.conf b/tmux/tmux/tmux.conf index 706794d00..be5290f45 100644 --- a/tmux/tmux/tmux.conf +++ b/tmux/tmux/tmux.conf @@ -12,10 +12,10 @@ bind-key -r k select-pane -U bind-key -r l select-pane -R # fix issue with tmux repeating -r the arrow directions (meaning when you switch panes you can accidentally jump back to the other pane again) -# bind-key Up select-pane -U -# bind-key Down select-pane -D -# bind-key Left select-pane -L -# bind-key Right select-pane -R +unbind-key Up +unbind-key Down +unbind-key Left +unbind-key Right # make splitting and creating windows easier bind-key v split-window -h -c "#{pane_current_path}"