From 6840242c443621336bd993ec5b8f8d6fabfcd6df Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Thu, 14 May 2026 12:37:51 +0200 Subject: [PATCH] Fix indention --- config/tmux/tmux.conf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/tmux/tmux.conf b/config/tmux/tmux.conf index cbab9ad5..a22db3a4 100644 --- a/config/tmux/tmux.conf +++ b/config/tmux/tmux.conf @@ -14,9 +14,9 @@ bind -T copy-mode-vi y send -X copy-selection-and-cancel # Pane Controls bind -n M-Enter run-shell \ -"[[ $(tmux list-panes | wc -l) -eq 1 ]] && \ -tmux splitw -h -c '#{pane_current_path}' || \ -tmux splitw -v -c '#{pane_current_path}'" + "[[ $(tmux list-panes | wc -l) -eq 1 ]] && \ + tmux splitw -h -c '#{pane_current_path}' || \ + tmux splitw -v -c '#{pane_current_path}'" bind h split-window -v -c "#{pane_current_path}" bind v split-window -h -c "#{pane_current_path}" bind x kill-pane