From 8f2d9fb72b14dc97fc291b10d1226ccd6f3b9cb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?I=C3=B1aki=20Dom=C3=ADnguez=20Ochoa?= Date: Fri, 25 Apr 2025 17:43:49 +0200 Subject: [PATCH] fix new window keybind --- tmux/.tmux.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf index f384a15..402475d 100644 --- a/tmux/.tmux.conf +++ b/tmux/.tmux.conf @@ -19,7 +19,7 @@ set -g mouse on set-option -gw xterm-keys on bind-key -n C-t new-window -bind-key -n C-S-t new-window -c '#{pane_current_path}' +bind-key -n C-y new-window -c "#{pane_current_path}" bind '"' split-window -v -c "#{pane_current_path}" bind % split-window -h -c "#{pane_current_path}"