mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-21 22:13:19 -07:00
* usr/lib/byobu/include/select-session.py: LP: #1548384
- when selecting a session, if only empty sessions exist, then create a new one; the bug was that tmux considers a null string argument still an argument
This commit is contained in:
parent
a9a8e5975a
commit
63343cbce2
2 changed files with 6 additions and 3 deletions
4
debian/changelog
vendored
4
debian/changelog
vendored
|
@ -4,6 +4,10 @@ byobu (5.113) unreleased; urgency=medium
|
||||||
- ping the router, too, to verify at least local connectivity
|
- ping the router, too, to verify at least local connectivity
|
||||||
* usr/lib/byobu/include/shutil:
|
* usr/lib/byobu/include/shutil:
|
||||||
- use a prime here, too
|
- use a prime here, too
|
||||||
|
* usr/lib/byobu/include/select-session.py: LP: #1548384
|
||||||
|
- when selecting a session, if only empty sessions exist, then create
|
||||||
|
a new one; the bug was that tmux considers a null string argument
|
||||||
|
still an argument
|
||||||
|
|
||||||
-- Dustin Kirkland <kirkland@ubuntu.com> Fri, 16 Sep 2016 10:13:08 -0500
|
-- Dustin Kirkland <kirkland@ubuntu.com> Fri, 16 Sep 2016 10:13:08 -0500
|
||||||
|
|
||||||
|
|
|
@ -199,7 +199,6 @@ if choice >= 1:
|
||||||
|
|
||||||
# No valid selection, default to the youngest session, create if necessary
|
# No valid selection, default to the youngest session, create if necessary
|
||||||
if BYOBU_BACKEND == "tmux":
|
if BYOBU_BACKEND == "tmux":
|
||||||
args = ""
|
os.execvp("tmux", ["tmux"])
|
||||||
else:
|
else:
|
||||||
args = "-AOxRR"
|
os.execvp("screen", ["screen", "-AOxRR"])
|
||||||
os.execvp("byobu", ["byobu", args])
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue