* usr/share/byobu/profiles/tmuxrc:

- tmux windows still aren't working right; disable for now
* usr/lib/byobu/include/config.py.in: LP: #1303218
This commit is contained in:
Dustin Kirkland 2014-04-27 08:42:20 -05:00
commit 47337bcc5c
3 changed files with 11 additions and 2 deletions

6
debian/changelog vendored
View file

@ -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 <kirkland@ubuntu.com> Wed, 23 Apr 2014 18:24:26 -0500

View file

@ -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):

View file

@ -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