From f9355f7b9cb505bdd4217b50f056c4fa09c51ec7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Sat, 2 Jul 2022 12:31:45 +0200 Subject: [PATCH] tmux: Do not use abbreviated keybinds --- tmux/tmux.conf | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/tmux/tmux.conf b/tmux/tmux.conf index f81bb54..3c10f85 100644 --- a/tmux/tmux.conf +++ b/tmux/tmux.conf @@ -60,22 +60,22 @@ set-option -g message-style "bg=#CCCCCC,fg=#555555" # Use C-a as the prefix set-option -g prefix C-a -unbind C-b -bind C-a send-prefix +unbind-key C-b +bind-key C-a send-prefix -unbind C-j +unbind-key C-j bind-key k confirm kill-window bind-key K confirm kill-server -bind h select-pane -L -bind j select-pane -D -bind k select-pane -U -bind l select-pane -R +bind-key h select-pane -L +bind-key j select-pane -D +bind-key k select-pane -U +bind-key l select-pane -R # vertical = | in this case -unbind % -unbind '"' +unbind-key % +unbind-key '"' bind-key s split-window -v -c "#{pane_current_path}" bind-key v split-window -h -c "#{pane_current_path}" @@ -94,4 +94,4 @@ bind-key -n C-F3 set-option status bind-key r source-file ~/.tmux.conf \; display-message "~/.tmux.conf sourced" -bind P paste-buffer +bind-key P paste-buffer