File tree Expand file tree Collapse file tree 3 files changed +13
-1
lines changed Expand file tree Collapse file tree 3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,13 @@ tmuxp Changelog
3
3
4
4
Here you can find the recent changes to tmuxp.
5
5
6
+ 2013-10-31
7
+ ----------
8
+
9
+ - [internal] :meth:`util.is_version()`
10
+ - [config] [tests]: correctly :meth:`config.trickle()` the ``start_directory``.
11
+ - [config] [tests]: get ``start_directory`` working for configs
12
+
6
13
2013-10-30
7
14
----------
8
15
Original file line number Diff line number Diff line change @@ -152,7 +152,12 @@ class RenameSpacesTest(RenameTest):
152
152
class KillWindow (TmuxTestCase ):
153
153
154
154
def test_kill_window (self ):
155
+ self .session .new_window ()
156
+ # create a second window to not kick out the client.
157
+ # there is another way to do this via options too.
158
+
155
159
w = self .session .attached_window ()
160
+
156
161
w .get ('window_id' )
157
162
158
163
w .kill_window ()
Original file line number Diff line number Diff line change @@ -218,7 +218,7 @@ def which(exe=None):
218
218
logger .error ('No executable was passed to be searched by which' )
219
219
return None
220
220
221
- def get_version (version ):
221
+ def is_version (version ):
222
222
""" Return True if tmux version installed.
223
223
224
224
:param version: version, '1.8'
You can’t perform that action at this time.
0 commit comments