Further improvements to window management. Move up and down sessions with control up and down :)

This commit is contained in:
Shawn Anderson 2022-11-24 18:05:53 -08:00
parent 78ca16dc5a
commit 8845f0327e
1 changed files with 7 additions and 1 deletions

View File

@ -9,7 +9,13 @@ bind G set status
unbind ^C
bind c new-window -c '#{pane_current_path}'
#urxvt tab like window switching (-n: no prior escape seq)
# List Commands and Keys
unbind ?
bind ? list-keys
# Window management with arrow keys (-n: no prior escape seq)
bind -n C-up switch-client -p
bind -n C-down switch-client -n
bind -n C-left prev
bind -n C-right next
bind -n S-Left { swap-window -t -1; previous-window }