From 4ec99e386fbb74910283ba8efd26ba93e01684e3 Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Wed, 16 Dec 2020 19:25:37 +0100 Subject: [PATCH] tmux: change prefix to C-a (from C-space) Some terminal emulators eat up the C-space sequence. C-a seems to be quite safe, as many people use it. --- roles/tmux/files/tmux.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/tmux/files/tmux.conf b/roles/tmux/files/tmux.conf index 86193a6..55d12f1 100644 --- a/roles/tmux/files/tmux.conf +++ b/roles/tmux/files/tmux.conf @@ -2,7 +2,7 @@ # Key bindings # unbind C-b -set -g prefix C-Space +set -g prefix C-a # Open new windows/panes with the path in current pane bind c new-window -c '#{pane_current_path}'