usr/bin/byobu-select-session: revert recent change, which defaulted to

-UDR (which detached and logged out other connections on reattach);
feedback was negative on this one, numerous questions in IRC, LP: #589027
This commit is contained in:
Dustin Kirkland 2010-06-03 00:49:31 -05:00
commit d7ff14c0b8
2 changed files with 5 additions and 2 deletions

3
debian/changelog vendored
View file

@ -5,6 +5,9 @@ byobu (2.78) UNRELEASED; urgency=low
usr/share/byobu/keybindings/screen-escape-keys: show a visual queue usr/share/byobu/keybindings/screen-escape-keys: show a visual queue
when toggling on/off the f-key keybindings; Menu:<F9> vs. Menu:<^a-@>, when toggling on/off the f-key keybindings; Menu:<F9> vs. Menu:<^a-@>,
LP: #589016 LP: #589016
* usr/bin/byobu-select-session: revert recent change, which defaulted to
-UDR (which detached and logged out other connections on reattach);
feedback was negative on this one, numerous questions in IRC, LP: #589027
-- Dustin Kirkland <kirkland@ubuntu.com> Tue, 01 Jun 2010 10:53:54 -0500 -- Dustin Kirkland <kirkland@ubuntu.com> Tue, 01 Jun 2010 10:53:54 -0500

View file

@ -60,7 +60,7 @@ if choice:
os.execv("/usr/bin/byobu", ["", SHELL]) os.execv("/usr/bin/byobu", ["", SHELL])
else: else:
# Attach to the chosen session # Attach to the chosen session
os.execv("/usr/bin/byobu", ["", "-UDR", sessions[choice]]) os.execv("/usr/bin/byobu", ["", "-AOxRR", sessions[choice]])
else: else:
# No valid selection, default to the youngest session # No valid selection, default to the youngest session
os.execv("/usr/bin/byobu", ["", "-UDR"]) os.execv("/usr/bin/byobu", ["", "-AOxRR"])