1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-26 14:54:16 +03:00
wezterm/docs/config/lua/keyassignment/SplitVertical.md

23 lines
495 B
Markdown
Raw Normal View History

2020-10-10 20:49:36 +03:00
# SplitVertical
*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.
`SplitVertical` requires a [SpawnCommand](../SpawnCommand.md) parameter to
specify what should be spawned into the new split.
```lua
local wezterm = require 'wezterm';
return {
keys = {
{key="\"", mods="CTRL|SHIFT|ALT", action=wezterm.action{SplitVertical={
args={"top"}
}}},
}
}
```