mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-22 06:23:19 -07:00
* usr/bin/byobu-launch:
- append, rather than prepend, $PROMPT_COMMAND, as double-semi-colons are illegal, thanks to Christian Mäder in github for patch
This commit is contained in:
parent
64a1b528de
commit
4b93e536cf
2 changed files with 4 additions and 1 deletions
3
debian/changelog
vendored
3
debian/changelog
vendored
|
@ -2,6 +2,9 @@ byobu (5.38) unreleased; urgency=low
|
|||
|
||||
* usr/bin/byobu-janitor:
|
||||
- there is no "grey" in tmux
|
||||
* usr/bin/byobu-launch:
|
||||
- append, rather than prepend, $PROMPT_COMMAND, as double-semi-colons
|
||||
are illegal, thanks to Christian Mäder in github for patch
|
||||
|
||||
-- Dustin Kirkland <kirkland@ubuntu.com> Sun, 21 Apr 2013 11:11:01 -0500
|
||||
|
||||
|
|
|
@ -58,7 +58,7 @@ elif [ "$BYOBU_SOURCED_PROFILE" != "1" ] && [ "$LC_BYOBU" != "0" ] && [ "$BYOBU_
|
|||
esac
|
||||
fi
|
||||
done
|
||||
[ -n "$PROMPT_COMMAND" ] && PROMPT_COMMAND="$PROMPT_COMMAND;history -a;history -r" || PROMPT_COMMAND="history -a;history -r"
|
||||
[ -n "$PROMPT_COMMAND" ] && PROMPT_COMMAND="history -a;history -r;$PROMPT_COMMAND" || PROMPT_COMMAND="history -a;history -r"
|
||||
# Source profile, if necessary
|
||||
[ -z "$_byobu_sourced" ] && [ -r "$HOME/.profile" ] && . "$HOME/.profile"
|
||||
if byobu-launcher; then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue