mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-22 06:23:19 -07:00
* usr/bin/byobu-ctrl-a: LP: #1004031
- fix some bad problems introduced by single quotes - escape double quotes instead
This commit is contained in:
parent
cc54fcf9f9
commit
1492fa43f2
2 changed files with 7 additions and 4 deletions
3
debian/changelog
vendored
3
debian/changelog
vendored
|
@ -6,6 +6,9 @@ byobu (5.28) unreleased; urgency=low
|
|||
conflicts with the -t option on the command line
|
||||
- add a hack to byobu that detects this, and avoids hanging
|
||||
- set title to . otherwise (seems we need one printable character here)
|
||||
* usr/bin/byobu-ctrl-a: LP: #1004031
|
||||
- fix some bad problems introduced by single quotes
|
||||
- escape double quotes instead
|
||||
|
||||
-- Dustin Kirkland <kirkland@ubuntu.com> Mon, 14 Jan 2013 15:27:36 -0600
|
||||
|
||||
|
|
|
@ -82,7 +82,7 @@ case "$bind_to" in
|
|||
case "$BYOBU_BACKEND" in
|
||||
screen)
|
||||
$BYOBU_SED -i -e "/^register x /d" -e "/^bindkey \"^\"/d" -e "/^escape escape \^${KEY}${key}/d" "$keybindings"
|
||||
echo 'bindkey "^${KEY}"' >> "$keybindings"
|
||||
echo "bindkey \"^${KEY}\"" >> "$keybindings"
|
||||
$BYOBU_BACKEND -X at 0 source "$BYOBU_CONFIG_DIR/profile"
|
||||
;;
|
||||
tmux)
|
||||
|
@ -98,9 +98,9 @@ case "$bind_to" in
|
|||
case "$BYOBU_BACKEND" in
|
||||
screen)
|
||||
$BYOBU_SED -i -e "/^register x /d" -e "/^bindkey \"^\"/d" -e "/^escape /d" "$keybindings"
|
||||
echo 'escape "^${KEY}${key}"' >> "$keybindings"
|
||||
echo 'register x "^${KEY}"' >> "$keybindings"
|
||||
echo 'bindkey "^${KEY}"' >> "$keybindings"
|
||||
echo "escape \"^${KEY}${key}\"" >> "$keybindings"
|
||||
echo "register x \"^${KEY}\"" >> "$keybindings"
|
||||
echo "bindkey \"^${KEY}\"" >> "$keybindings"
|
||||
$BYOBU_BACKEND -X at 0 source "$BYOBU_CONFIG_DIR/profile"
|
||||
;;
|
||||
tmux)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue