From accf701110d380d8c747a48d427fdb92edc0588a Mon Sep 17 00:00:00 2001 From: Dustin Kirkland Date: Mon, 14 Jan 2013 13:47:49 -0600 Subject: [PATCH] * usr/bin/byobu-ctrl-a: LP: #1098229 - fix typo that breaks ctrl-a selection behavior --- debian/changelog | 2 ++ usr/bin/byobu-ctrl-a | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 9dd4f641..111786ab 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Thu, 10 Jan 2013 16:36:23 -0600 diff --git a/usr/bin/byobu-ctrl-a b/usr/bin/byobu-ctrl-a index 8e6fa111..1233d8f8 100755 --- a/usr/bin/byobu-ctrl-a +++ b/usr/bin/byobu-ctrl-a @@ -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" ;;