diff options
-rw-r--r-- | meta/lib/oe/terminal.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/lib/oe/terminal.py b/meta/lib/oe/terminal.py index 2e23d59cae..aecf4e89d0 100644 --- a/meta/lib/oe/terminal.py +++ b/meta/lib/oe/terminal.py | |||
@@ -107,6 +107,7 @@ class Screen(Terminal): | |||
107 | 107 | ||
108 | class TmuxRunning(Terminal): | 108 | class TmuxRunning(Terminal): |
109 | """Open a new pane in the current running tmux window""" | 109 | """Open a new pane in the current running tmux window""" |
110 | name = 'tmux-running' | ||
110 | command = 'tmux split-window {command}' | 111 | command = 'tmux split-window {command}' |
111 | priority = 2.75 | 112 | priority = 2.75 |
112 | 113 | ||
@@ -119,7 +120,7 @@ class TmuxRunning(Terminal): | |||
119 | 120 | ||
120 | Terminal.__init__(self, sh_cmd, title, env, d) | 121 | Terminal.__init__(self, sh_cmd, title, env, d) |
121 | 122 | ||
122 | class TmuxNewSession(Terminal): | 123 | class Tmux(Terminal): |
123 | """Start a new tmux session and window""" | 124 | """Start a new tmux session and window""" |
124 | command = 'tmux new -d -s devshell -n devshell {command}' | 125 | command = 'tmux new -d -s devshell -n devshell {command}' |
125 | priority = 0.75 | 126 | priority = 0.75 |