We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6dbf9ed commit e8b550bCopy full SHA for e8b550b
CHANGES
@@ -3,6 +3,12 @@ tmuxp Changelog
3
4
Here you can find the recent changes to tmuxp.
5
6
+2013-10-30
7
+----------
8
+
9
+- [cli] fix bug where if inside tmux, loading a workspace via switch_client
10
+ wouldn't work.
11
12
2013-10-29
13
----------
14
tmuxp/cli.py
@@ -275,7 +275,7 @@ def load_workspace(config_file, args):
275
print('Session killed.')
276
elif choice == 'a':
277
if 'TMUX' in os.environ:
278
- builder.session.switch_session()
+ builder.session.switch_client()
279
else:
280
builder.session.attach_session()
281
0 commit comments