Back to Wezterm

`SpawnCommandInNewWindow`

docs/config/lua/keyassignment/SpawnCommandInNewWindow.md

latest387 B
Original Source

SpawnCommandInNewWindow

Spawn a new tab into a brand new window. The argument is a SpawnCommand struct that is discussed in more detail in the SpawnCommand docs.

lua
config.keys = {
  -- CMD-y starts `top` in a new window
  {
    key = 'y',
    mods = 'CMD',
    action = wezterm.action.SpawnCommandInNewWindow {
      args = { 'top' },
    },
  },
}