ensure that ctrl-a-( and ctrl-a-) allow for non-default escape sequences

Signed-off-by: Dustin Kirkland <kirkland@canonical.com>
This commit is contained in:
Dustin Kirkland 2009-06-12 11:41:05 -05:00
commit 3d8b46cb2d
3 changed files with 10 additions and 10 deletions

6
debian/changelog vendored
View file

@ -1,11 +1,11 @@
byobu (2.11) unreleased; urgency=low byobu (2.11) unreleased; urgency=low
* debian/install, keybindings/common.disable, profiles/common: add support * debian/install, keybindings/common.disable: add support for
for enabling/disabling the byobu keybindings, with ctrl-a-( and enabling/disabling the byobu keybindings, with ctrl-a-( and
ctrl-a-), LP: #386363 ctrl-a-), LP: #386363
-- Dustin Kirkland <kirkland@ubuntu.com> Fri, 12 Jun 2009 11:13:47 -0500 -- Dustin Kirkland <kirkland@ubuntu.com> Fri, 12 Jun 2009 11:40:45 -0500
byobu (2.10-0ubuntu1) karmic; urgency=low byobu (2.10-0ubuntu1) karmic; urgency=low

View file

@ -48,3 +48,10 @@ bindkey -k F2 lockscreen # F12 | Lock this terminal
bind $ screen -t status 0 byobu-status-detail # ctrl-a $ | show detailed status bind $ screen -t status 0 byobu-status-detail # ctrl-a $ | show detailed status
bind @ screen -t help 0 byobu-config # ctrl-a @ | Configuration bind @ screen -t help 0 byobu-config # ctrl-a @ | Configuration
bind R process r # ctrl-a R | Reload profile bind R process r # ctrl-a R | Reload profile
# toggle common keybindings off
register d "^a:source /usr/share/byobu/keybindings/common.disable^M"
bind ) process d
# toggle common keybindings on
register e "^a:source /usr/share/byobu/keybindings/common^M"
bind ( process e

View file

@ -65,11 +65,4 @@ altscreen on
# Log 10000 lines # Log 10000 lines
defscrollback 10000 defscrollback 10000
# ctrl-a-( enables common keybindings
register e "^a:source /usr/share/byobu/keybindings/common^M"
bind ( process e
# ctrl-a-) disables common keybindings
register d "^a:source /usr/share/byobu/keybindings/common.disable^M"
bind ) process d
source $HOME/.byobu/keybindings source $HOME/.byobu/keybindings