ENH don't use backtab
This commit is contained in:
parent
922936c5b0
commit
b5155231cf
|
@ -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
|
! 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
|
! 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-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~
|
||||||
|
|
|
@ -31,9 +31,9 @@ bind | split-window -h
|
||||||
|
|
||||||
# window navigation
|
# window navigation
|
||||||
bind -n C-Tab next-window
|
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 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 -h -t '%%'"
|
||||||
bind -n M-- choose-window "join-pane -v -t '%%'"
|
bind -n M-- choose-window "join-pane -v -t '%%'"
|
||||||
|
|
Loading…
Reference in New Issue