File tree Expand file tree Collapse file tree 5 files changed +16
-9
lines changed Expand file tree Collapse file tree 5 files changed +16
-9
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,12 @@ $ pipx install --suffix=@next 'tmuxp' --pip-args '\--pre' --force
1919
2020<!-- Maintainers, insert changes / features for the next release here -->
2121
22+ ### Breaking changes
23+
24+ - libtmux: 0.32.0 -> 0.33.0 (#918 )
25+
26+ Move ` split_window() ` to ` split() ` .
27+
2228### Development
2329
2430- poetry: 1.7.1 -> 1.8.1
Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ AL - [Abstraction Layer][abstraction layer]
149149| {meth}` libtmux.Session.windows ` | ` $ tmux list-windows ` |
150150| {meth}` libtmux.Session.new_window ` | ` $ tmux new-window ` |
151151| {meth}` libtmux.Window.panes ` | ` $ tmux list-panes ` |
152- | {meth}` libtmux.Window.split_window ` | ` $ tmux split-window ` |
152+ | {meth}` libtmux.Window.split ` | ` $ tmux split-window ` |
153153| {meth}` libtmux.Pane.send_keys ` | ` $ tmux send-keys ` |
154154
155155[ import ] : http://tmuxp.git-pull.com/commands/#import
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ tmuxp = 'tmuxp:cli.cli'
4747
4848[tool .poetry .dependencies ]
4949python = " ^3.8"
50- libtmux = " ~0.32 .0"
50+ libtmux = " ~0.33 .0"
5151colorama = " >=0.3.9"
5252PyYAML = " ^6.0"
5353
Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ def test_shell(
122122 monkeypatch .setenv ("HOME" , str (tmp_path ))
123123 window_name = "my_window"
124124 window = session .new_window (window_name = window_name )
125- window .split_window ()
125+ window .split ()
126126
127127 assert window .active_pane is not None
128128
@@ -215,7 +215,7 @@ def test_shell_target_missing(
215215 monkeypatch .setenv ("HOME" , str (tmp_path ))
216216 window_name = "my_window"
217217 window = session .new_window (window_name = window_name )
218- window .split_window ()
218+ window .split ()
219219
220220 assert server .socket_name is not None
221221 assert session .name is not None
@@ -292,7 +292,7 @@ def test_shell_interactive(
292292 monkeypatch .setenv ("HOME" , str (tmp_path ))
293293 window_name = "my_window"
294294 window = session .new_window (window_name = window_name )
295- window .split_window ()
295+ window .split ()
296296
297297 assert window .active_pane is not None
298298
You can’t perform that action at this time.
0 commit comments