1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-20 03:41:36 +03:00
wezterm/docs/config/lua/keyassignment/SpawnCommandInNewWindow.md
2020-10-10 10:49:36 -07:00

409 B

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.

local wezterm = require 'wezterm';

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