tmux: Change <C-a>! to place behind current window

Analog to <C-a>c the new window should be placed behind the current one.
This commit is contained in:
2024-04-09 15:33:30 +02:00
parent 15af1af190
commit 4251fec30e

View File

@@ -54,6 +54,9 @@ bind > splitw -h -c "#{pane_current_path}"
# Create new window with CWD as PWD and place it after the current one # Create new window with CWD as PWD and place it after the current one
bind c neww -a -c "#{pane_current_path}" -t #{active_window_index} bind c neww -a -c "#{pane_current_path}" -t #{active_window_index}
# Break off the current pane to a new window behind the current one
bind ! breakp -a -t #{active_window_index}
# Resource config # Resource config
bind R source-file "$XDG_CONFIG_HOME/tmux/tmux.conf" \; \ bind R source-file "$XDG_CONFIG_HOME/tmux/tmux.conf" \; \
display "Sourced $XDG_CONFIG_HOME/tmux/tmux.conf" display "Sourced $XDG_CONFIG_HOME/tmux/tmux.conf"