blob: a4eb9b61c52c1ad43a285d98bc68762223a39729 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# jump to beginning and end of word
map ctrl+left send_text all \x1b\x62
map ctrl+right send_text all \x1b\x66
# "Fake" keybindings, for sending input not representable by ASCII chords.
map ctrl+shift+, send_key alt+shift+a ## tmux: swap window with previous
map ctrl+shift+. send_key alt+shift+b ## tmux: swap window with next
map ctrl+, send_key alt+shift+c ## tmux: view previous window
map ctrl+. send_key alt+shift+d ## tmux: view next window
# End "fake" keybindings.
|