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
33
44Here you can find the recent changes to tmuxp.
55
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+
6132013-10-30
714----------
815
Original file line number Diff line number Diff line change @@ -152,7 +152,12 @@ class RenameSpacesTest(RenameTest):
152152class KillWindow (TmuxTestCase ):
153153
154154 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+
155159 w = self .session .attached_window ()
160+
156161 w .get ('window_id' )
157162
158163 w .kill_window ()
Original file line number Diff line number Diff line change @@ -218,7 +218,7 @@ def which(exe=None):
218218 logger .error ('No executable was passed to be searched by which' )
219219 return None
220220
221- def get_version (version ):
221+ def is_version (version ):
222222 """ Return True if tmux version installed.
223223
224224 :param version: version, '1.8'
You can’t perform that action at this time.
0 commit comments