mirror of
https://github.com/wez/wezterm.git
synced 2024-12-20 03:41:36 +03:00
409 B
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"}
}}},
}
}