mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-22 14:24:39 -07:00
* 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:
parent
a64b4ab712
commit
47337bcc5c
3 changed files with 11 additions and 2 deletions
6
debian/changelog
vendored
6
debian/changelog
vendored
|
@ -1,8 +1,14 @@
|
||||||
byobu (5.79) unreleased; urgency=medium
|
byobu (5.79) unreleased; urgency=medium
|
||||||
|
|
||||||
|
[ Dustin Kirkland ]
|
||||||
* usr/bin/byobu-ctrl-a.in: LP: #1313209
|
* usr/bin/byobu-ctrl-a.in: LP: #1313209
|
||||||
- fix syntax error, remove unnecessary bindkey line
|
- fix syntax error, remove unnecessary bindkey line
|
||||||
- also fixes LP: #814172
|
- 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
|
-- Dustin Kirkland <kirkland@ubuntu.com> Wed, 23 Apr 2014 18:24:26 -0500
|
||||||
|
|
||||||
|
|
|
@ -309,7 +309,10 @@ def getesckey():
|
||||||
|
|
||||||
def setesckey(key):
|
def setesckey(key):
|
||||||
if key.isalpha():
|
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):
|
def chgesc(snackScreen, size):
|
||||||
|
|
|
@ -26,5 +26,5 @@ source-file $HOME/.byobu/color.tmux
|
||||||
source-file $HOME/.byobu/datetime.tmux
|
source-file $HOME/.byobu/datetime.tmux
|
||||||
source-file $BYOBU_CONFIG_DIR/profile.tmux
|
source-file $BYOBU_CONFIG_DIR/profile.tmux
|
||||||
source-file $BYOBU_CONFIG_DIR/keybindings.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
|
source-file $BYOBU_CONFIG_DIR/.tmux.conf
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue