From 666d87d7b4639784c1133f86eceb42fb049400a4 Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Tue, 23 Feb 2021 17:23:08 +0100 Subject: [PATCH] tmux: use C-b as prefix This is easy to type on the Moonlander and prevents issues on Windows with WSL, where C-space was being eaten by the console emulator. --- files/tmux.conf | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/files/tmux.conf b/files/tmux.conf index f0de50a..613bd9f 100644 --- a/files/tmux.conf +++ b/files/tmux.conf @@ -1,9 +1,7 @@ # # Key bindings # -unbind C-b -set -g prefix C-space -bind-key C-space send-prefix +bind-key C-b send-prefix # Open new windows/panes with the path in current pane bind c new-window -c '#{pane_current_path}'