Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tmux/tmux.conf
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ unbind "\$" # rename-session
unbind , # rename-window
unbind % # split-window -h
unbind '"' # split-window
unbind } # swap-pane -D
unbind { # swap-pane -U
unbind '}' # swap-pane -D
unbind '{' # swap-pane -U
unbind [ # paste-buffer
unbind ]
unbind "'" # select-window
Expand Down Expand Up @@ -95,7 +95,7 @@ bind L command-prompt -p "Link window from (session:window): " "link-window -s %

# Swap panes back and forth with 1st pane
# When in main-(horizontal|vertical) layouts, the biggest/widest panel is always @1
bind \ if '[ #{pane_index} -eq 1 ]' \
bind '\' if '[ #{pane_index} -eq 1 ]' \
'swap-pane -s "!"' \
'select-pane -t:.1 ; swap-pane -d -t 1 -s "!"'

Expand Down