File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed 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 @@ -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