2020-10-10 20:49:36 +03:00
|
|
|
# SplitHorizontal
|
|
|
|
|
2020-11-01 01:51:08 +03:00
|
|
|
*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.
|
|
|
|
|
2020-12-29 19:40:52 +03:00
|
|
|
```lua
|
|
|
|
local wezterm = require 'wezterm';
|
|
|
|
|
|
|
|
return {
|
|
|
|
keys = {
|
|
|
|
-- This will create a new split and run your default program inside it
|
2021-04-03 15:05:07 +03:00
|
|
|
{key="%", mods="CTRL|SHIFT|ALT",
|
2020-12-29 19:40:52 +03:00
|
|
|
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 = {
|
2020-12-29 19:40:52 +03:00
|
|
|
-- This will create a new split and run the `top` program inside it
|
2021-04-03 15:05:07 +03:00
|
|
|
{key="%", mods="CTRL|SHIFT|ALT", action=wezterm.action{SplitHorizontal={
|
2020-10-10 20:49:36 +03:00
|
|
|
args={"top"}
|
|
|
|
}}},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|