ENH don't use backtab

This commit is contained in:
Nathan Dwarshuis 2021-06-27 20:05:30 -04:00
parent 922936c5b0
commit b5155231cf
2 changed files with 5 additions and 3 deletions

View File

@ -89,4 +89,6 @@ URxvt.keysym.Control-B: perl:clipboard:paste_escaped
! The main reason for this is that I really really wanted to use C-Tab in tmux
! but also did not want to use xterm since urxvt is lighter and awesome-r
URxvt.keysym.C-Tab: \033[27;5;9~
URxvt.keysym.C-ISO_Left_Tab: \033[Z
! make shift-tab send M-F12 since I there appears to not be anything for this
! even in extended keys from xterm
URxvt.keysym.C-ISO_Left_Tab: \033\033[24~

View File

@ -31,9 +31,9 @@ bind | split-window -h
# window navigation
bind -n C-Tab next-window
bind -n BTab previous-window # idk if there is even an extended sequence for Shift-Tab
bind -n M-F12 previous-window # use this since BTab = S-Esc (even in extended keys)
bind C-Tab swap-window -t +1 \; next-window
bind BTab swap-window -t -1 \; previous-window
bind M-F12 swap-window -t -1 \; previous-window
bind -n M-| choose-window "join-pane -h -t '%%'"
bind -n M-- choose-window "join-pane -v -t '%%'"