* usr/bin/byobu-ctrl-a.in:

- add bindkey line back, this line is *essential*; there was a
    syntax error in it previously, but removing the line was not
    the correct fix for LP: #1313209, #814172
This commit is contained in:
Dustin Kirkland 2014-07-21 13:44:36 -06:00
commit e213dd4920
2 changed files with 5 additions and 1 deletions

5
debian/changelog vendored
View file

@ -1,6 +1,9 @@
byobu (5.82) unreleased; urgency=medium byobu (5.82) unreleased; urgency=medium
* UNRELEASED * usr/bin/byobu-ctrl-a.in:
- add bindkey line back, this line is *essential*; there was a
syntax error in it previously, but removing the line was not
the correct fix for LP: #1313209, #814172
-- Dustin Kirkland <kirkland@ubuntu.com> Sun, 06 Jul 2014 15:51:18 -0500 -- Dustin Kirkland <kirkland@ubuntu.com> Sun, 06 Jul 2014 15:51:18 -0500

View file

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