1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-29 00:21:57 +03:00
wezterm/docs/config/lua/keyassignment/SplitHorizontal.md
Wez Furlong ecd05547d5 Add SplitPane assignment
This, along with the plumbing included here, allows specifying
the destination of the split (now you can specify top/left, whereas
previously it was limited to right/bottom), as well as the size
of the split, and also whether the split targets the node at the
top level of the tab rather than the active pane--that is referred
to as full-width in tmux terminology.

https://github.com/wez/wezterm/issues/578
2022-05-21 21:09:11 -07:00

873 B

SplitHorizontal

Since: 20201031-154415-9614e117

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.

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"}}},
  }
}

SplitHorizontal requires a SpawnCommand parameter to specify what should be spawned into the new split.

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={
      args={"top"}
    }}},
  }
}

See also: SplitPane.