mirror of
https://github.com/wez/wezterm.git
synced 2024-12-27 07:18:13 +03:00
e0ea0f46a8
refs: https://github.com/wez/wezterm/pull/2273 refs: https://github.com/wez/wezterm/issues/2253
44 lines
930 B
Markdown
44 lines
930 B
Markdown
# SplitVertical
|
|
|
|
*Since: 20201031-154415-9614e117*
|
|
|
|
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.
|
|
|
|
```lua
|
|
local wezterm = require 'wezterm'
|
|
|
|
return {
|
|
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' },
|
|
},
|
|
},
|
|
}
|
|
```
|
|
|
|
`SplitVertical` requires a [SpawnCommand](../SpawnCommand.md) parameter to
|
|
specify what should be spawned into the new split.
|
|
|
|
```lua
|
|
local wezterm = require 'wezterm'
|
|
|
|
return {
|
|
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' },
|
|
},
|
|
},
|
|
},
|
|
}
|
|
```
|
|
|
|
See also: [SplitPane](SplitPane.md).
|