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
19
19
20
20
<!-- Maintainers, insert changes / features for the next release here -->
21
21
22
+ ### Breaking changes
23
+
24
+ - libtmux: 0.32.0 -> 0.33.0 (#918 )
25
+
26
+ Move ` split_window() ` to ` split() ` .
27
+
22
28
### Development
23
29
24
30
- 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]
149
149
| {meth}` libtmux.Session.windows ` | ` $ tmux list-windows ` |
150
150
| {meth}` libtmux.Session.new_window ` | ` $ tmux new-window ` |
151
151
| {meth}` libtmux.Window.panes ` | ` $ tmux list-panes ` |
152
- | {meth}` libtmux.Window.split_window ` | ` $ tmux split-window ` |
152
+ | {meth}` libtmux.Window.split ` | ` $ tmux split-window ` |
153
153
| {meth}` libtmux.Pane.send_keys ` | ` $ tmux send-keys ` |
154
154
155
155
[ 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'
47
47
48
48
[tool .poetry .dependencies ]
49
49
python = " ^3.8"
50
- libtmux = " ~0.32 .0"
50
+ libtmux = " ~0.33 .0"
51
51
colorama = " >=0.3.9"
52
52
PyYAML = " ^6.0"
53
53
Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ def test_shell(
122
122
monkeypatch .setenv ("HOME" , str (tmp_path ))
123
123
window_name = "my_window"
124
124
window = session .new_window (window_name = window_name )
125
- window .split_window ()
125
+ window .split ()
126
126
127
127
assert window .active_pane is not None
128
128
@@ -215,7 +215,7 @@ def test_shell_target_missing(
215
215
monkeypatch .setenv ("HOME" , str (tmp_path ))
216
216
window_name = "my_window"
217
217
window = session .new_window (window_name = window_name )
218
- window .split_window ()
218
+ window .split ()
219
219
220
220
assert server .socket_name is not None
221
221
assert session .name is not None
@@ -292,7 +292,7 @@ def test_shell_interactive(
292
292
monkeypatch .setenv ("HOME" , str (tmp_path ))
293
293
window_name = "my_window"
294
294
window = session .new_window (window_name = window_name )
295
- window .split_window ()
295
+ window .split ()
296
296
297
297
assert window .active_pane is not None
298
298
You can’t perform that action at this time.
0 commit comments