2023-03-22 16:36:03 +03:00
|
|
|
# `SplitVertical`
|
2020-10-10 20:49:36 +03:00
|
|
|
|
2023-03-21 08:01:24 +03:00
|
|
|
{{since('20201031-154415-9614e117')}}
|
2020-10-10 20:49:36 +03:00
|
|
|
|
|
|
|
Splits the current pane in half vertically such that the current pane becomes
|
|
|
|
the top half and the new bottom half spawns a new command.
|
|
|
|
|
2020-12-29 19:40:52 +03:00
|
|
|
```lua
|
2023-03-20 04:26:21 +03:00
|
|
|
config.keys = {
|
|
|
|
-- This will create a new split and run your default program inside it
|
|
|
|
{
|
|
|
|
key = '"',
|
|
|
|
mods = 'CTRL|SHIFT|ALT',
|
|
|
|
action = wezterm.action.SplitVertical { domain = 'CurrentPaneDomain' },
|
2022-07-19 17:54:31 +03:00
|
|
|
},
|
2020-12-29 19:40:52 +03:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-10-10 20:49:36 +03:00
|
|
|
`SplitVertical` requires a [SpawnCommand](../SpawnCommand.md) parameter to
|
|
|
|
specify what should be spawned into the new split.
|
|
|
|
|
|
|
|
```lua
|
2023-03-20 04:26:21 +03:00
|
|
|
config.keys = {
|
|
|
|
-- This will create a new split and run the `top` program inside it
|
|
|
|
{
|
|
|
|
key = '"',
|
|
|
|
mods = 'CTRL|SHIFT|ALT',
|
|
|
|
action = wezterm.action.SplitVertical {
|
|
|
|
args = { 'top' },
|
2022-07-19 17:54:31 +03:00
|
|
|
},
|
|
|
|
},
|
2020-10-10 20:49:36 +03:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2022-05-22 06:50:50 +03:00
|
|
|
See also: [SplitPane](SplitPane.md).
|