* usr/share/byobu/keybindings/f-keys.tmux: LP: #1350813

- handle tmux 1.9's default path changes, per:
    https://sourceforge.net/p/tmux/tmux-code/ci/1.9/tree/CHANGES
This commit is contained in:
Dustin Kirkland 2015-03-23 12:49:26 -05:00
commit 9831dadb3a
2 changed files with 6 additions and 3 deletions

3
debian/changelog vendored
View file

@ -5,6 +5,9 @@ byobu (5.92) unreleased; urgency=medium
* usr/bin/byobu-config.in: LP: #1383669
- revert commit to LP: #1316050, which hardcoded LANG=C
- this should fix rendering of Japanese characters in the menu
* usr/share/byobu/keybindings/f-keys.tmux: LP: #1350813
- handle tmux 1.9's default path changes, per:
https://sourceforge.net/p/tmux/tmux-code/ci/1.9/tree/CHANGES
-- Dustin Kirkland <kirkland@ubuntu.com> Sat, 07 Mar 2015 18:59:37 -0500

View file

@ -28,9 +28,9 @@ source $BYOBU_PREFIX/share/byobu/keybindings/f-keys.tmux.disable
# Documented in: $BYOBU_PREFIX/share/doc/byobu/help.tmux.txt
bind-key -n F1 new-window -k -n config byobu-config
bind-key -n S-F1 new-window -k -n help "sh -c '$BYOBU_PAGER $BYOBU_PREFIX/share/doc/byobu/help.tmux.txt'"
bind-key -n F2 new-window \; rename-window "-"
bind-key -n C-F2 display-panes \; split-window -h
bind-key -n S-F2 display-panes \; split-window -v
bind-key -n F2 new-window -c "#{pane_current_path}" \; rename-window "-"
bind-key -n C-F2 display-panes \; split-window -h -c "#{pane_current_path}"
bind-key -n S-F2 display-panes \; split-window -v -c "#{pane_current_path}"
bind-key -n C-S-F2 new-session
bind-key -n F3 previous-window
bind-key -n F4 next-window