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 770aeb4 commit eaa75fbCopy full SHA for eaa75fb
CHANGES
@@ -4,6 +4,11 @@ Changelog
4
5
Here you can find the recent changes to tmuxp.
6
7
+CURRENT
8
+-------
9
+
10
+- [internal]: Fix documentation for :meth:``Session.switch_client()``.
11
12
0.1.13
13
------
14
tmuxp/session.py
@@ -88,11 +88,9 @@ def kill_session(self):
88
raise exc.TmuxpException(proc.stderr)
89
90
def switch_client(self, target_session=None):
91
- """``$ tmux kill-session``.
92
-
93
- :param: target_session: str. note this accepts fnmatch(3). 'asdf' will
94
- kill asdfasd
+ """``$ tmux switch-client``.
95
+ :param: target_session: str. note this accepts fnmatch(3).
96
"""
97
proc = self.tmux('switch-client', '-t%s' % self.get('session_id'))
98
0 commit comments