mirror of
https://github.com/wez/wezterm.git
synced 2024-11-28 09:12:19 +03:00
809bb53387
This makes the individual functions a bit easier to discover, and a lot easier to link to.
584 B
584 B
SpawnTab
Create a new tab in the current window. The argument defines to which domain the tab belongs:
local wezterm = require 'wezterm';
return {
keys = {
-- Create a new tab in the default domain
{key="t", mods="SHIFT|ALT", action=wezterm.action{SpawnTab="DefaultDomain"}},
-- Create a new tab in the same domain as the current tab
{key="t", mods="SHIFT|ALT", action=wezterm.action{SpawnTab="CurrentPaneDomain"}},
-- Create a tab in a named domain
{key="t", mods="SHIFT|ALT", action=wezterm.action{SpawnTab={DomainName="unix"}}},
}
}