1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-02 23:55:11 +03:00
wezterm/docs/config/lua/keyassignment/SplitHorizontal.md

36 lines
836 B
Markdown
Raw Normal View History

2020-10-10 20:49:36 +03:00
# SplitHorizontal
*Since: 20201031-154415-9614e117*
2020-10-10 20:49:36 +03:00
Splits the current pane in half horizontally such that the current pane becomes
the left half and the new right 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{SplitHorizontal={domain="CurrentPaneDomain"}}},
}
}
```
2020-10-10 20:49:36 +03:00
`SplitHorizontal` 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{SplitHorizontal={
2020-10-10 20:49:36 +03:00
args={"top"}
}}},
}
}
```