From 47337bcc5c5863b3bef33c44c920a0668866ae8c Mon Sep 17 00:00:00 2001 From: Dustin Kirkland Date: Sun, 27 Apr 2014 08:42:20 -0500 Subject: [PATCH] * usr/share/byobu/profiles/tmuxrc: - tmux windows still aren't working right; disable for now * usr/lib/byobu/include/config.py.in: LP: #1303218 --- debian/changelog | 6 ++++++ usr/lib/byobu/include/config.py.in | 5 ++++- usr/share/byobu/profiles/tmuxrc | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 63818b1a..d14068c1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,14 @@ byobu (5.79) unreleased; urgency=medium + [ Dustin Kirkland ] * usr/bin/byobu-ctrl-a.in: LP: #1313209 - fix syntax error, remove unnecessary bindkey line - also fixes LP: #814172 + * usr/share/byobu/profiles/tmuxrc: + - tmux windows still aren't working right; disable for now + + [ Kosuke Asami ] + * usr/lib/byobu/include/config.py.in: LP: #1303218 -- Dustin Kirkland Wed, 23 Apr 2014 18:24:26 -0500 diff --git a/usr/lib/byobu/include/config.py.in b/usr/lib/byobu/include/config.py.in index ed26cc87..419c77c2 100755 --- a/usr/lib/byobu/include/config.py.in +++ b/usr/lib/byobu/include/config.py.in @@ -309,7 +309,10 @@ def getesckey(): def setesckey(key): if key.isalpha(): - subprocess.call(["byobu-ctrl-a", "screen", key]) + # throw away outputs in order that the view isn't broken + nullf = open(os.devnull, "w") + subprocess.call(["byobu-ctrl-a", "screen", key], stdout=nullf) + nullf.close() def chgesc(snackScreen, size): diff --git a/usr/share/byobu/profiles/tmuxrc b/usr/share/byobu/profiles/tmuxrc index 4fe5a1f1..dc9b66f6 100644 --- a/usr/share/byobu/profiles/tmuxrc +++ b/usr/share/byobu/profiles/tmuxrc @@ -26,5 +26,5 @@ source-file $HOME/.byobu/color.tmux source-file $HOME/.byobu/datetime.tmux source-file $BYOBU_CONFIG_DIR/profile.tmux source-file $BYOBU_CONFIG_DIR/keybindings.tmux -source-file $BYOBU_CONFIG_DIR/windows.tmux +#source-file $BYOBU_CONFIG_DIR/windows.tmux source-file $BYOBU_CONFIG_DIR/.tmux.conf