From 2220d43d0c3c2429187f793b38cadbd6ac2d6d80 Mon Sep 17 00:00:00 2001 From: Gardouille Date: Tue, 19 May 2015 22:09:02 +0200 Subject: [PATCH] C-f or f to Zoom/Unzoom a pane. --- tmux.conf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tmux.conf b/tmux.conf index 5f9d54b..d9f1960 100644 --- a/tmux.conf +++ b/tmux.conf @@ -139,6 +139,12 @@ bind-key C-b command-prompt "find-window '%%'" unbind ^D bind ^D detach +# Zoom/Unzoom a pane +unbind f +bind-key f resize-pane -Z +unbind C-f +bind-key C-f resize-pane -Z + # Verrouiller tmux unbind ^X bind ^X lock-server