* usr/bin/byobu-ctrl-a: LP: #1098229

- fix typo that breaks ctrl-a selection behavior
This commit is contained in:
Dustin Kirkland 2013-01-14 13:47:49 -06:00
commit accf701110
2 changed files with 3 additions and 1 deletions

2
debian/changelog vendored
View file

@ -2,6 +2,8 @@ byobu (5.27) unreleased; urgency=low
* usr/bin/byobu-config: LP: #1097922, #1098102
- ensure byobu-config works even if ~/.profile doesn't exist
* usr/bin/byobu-ctrl-a: LP: #1098229
- fix typo that breaks ctrl-a selection behavior
-- Dustin Kirkland <kirkland@ubuntu.com> Thu, 10 Jan 2013 16:36:23 -0600

View file

@ -81,7 +81,7 @@ case "$bind_to" in
emacs)
case "$BYOBU_BACKEND" in
screen)
$BYOBU_SED -i -e "/^register x /d" -e "/^bindkey \"^\"/d" -e "/^escape escape \^${KEY$}${key}/d" "$keybindings"
$BYOBU_SED -i -e "/^register x /d" -e "/^bindkey \"^\"/d" -e "/^escape escape \^${KEY}${key}/d" "$keybindings"
echo 'bindkey "^${KEY}"' >> "$keybindings"
$BYOBU_BACKEND -X at 0 source "$BYOBU_CONFIG_DIR/profile"
;;