We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29d89c2 commit 1a93b57Copy full SHA for 1a93b57
CHANGES
@@ -5,6 +5,7 @@ Here you can find the recent changes to libtmux
5
## current
6
7
- _Insert changes/features/fixes for next release here_
8
+- Update `Window.select_window()` for #271
9
10
## libtmux 0.10.0 (2021-06-16)
11
- #321: Convert to markdown
libtmux/window.py
@@ -347,8 +347,7 @@ def select_window(self):
347
-------
348
:class:`Window`
349
"""
350
- target = ('%s:%s' % (self.get('session_id'), self.index),)
351
- return self.session.select_window(target)
+ return self.session.select_window(self.index)
352
353
def select_pane(self, target_pane):
354
0 commit comments