1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-29 00:21:57 +03:00
wezterm/docs/config/lua/keyassignment/SpawnCommandInNewTab.md

400 B

SpawnCommandInNewTab

Spawn a new tab into the current 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.actionSpawnCommandInNewTab{
      args={"top"}
    }},
  }
}