wezterm: fullscreen hotkey
This commit is contained in:
parent
7ffdf04944
commit
87b96cc72c
1 changed files with 4 additions and 2 deletions
|
@ -4,10 +4,12 @@ local leader_key = { key = 'g', mods = 'CTRL', timeout_milliseconds = 1000 }
|
||||||
local keybinds = {
|
local keybinds = {
|
||||||
{ key = 'c', mods = 'META', action = act.CopyTo('Clipboard') },
|
{ key = 'c', mods = 'META', action = act.CopyTo('Clipboard') },
|
||||||
{ key = 'v', mods = 'META', action = act.PasteFrom('Clipboard') },
|
{ key = 'v', mods = 'META', action = act.PasteFrom('Clipboard') },
|
||||||
-- themes
|
-- overrides
|
||||||
{ key = 'f', mods = 'LEADER', action = act.EmitEvent('override-fonts') },
|
{ key = 'y', mods = 'LEADER', action = act.EmitEvent('override-fonts') },
|
||||||
{ key = 't', mods = 'LEADER', action = act.EmitEvent('override-theme') },
|
{ key = 't', mods = 'LEADER', action = act.EmitEvent('override-theme') },
|
||||||
{ key = 'r', mods = 'LEADER', action = act.EmitEvent('override-reset') },
|
{ key = 'r', mods = 'LEADER', action = act.EmitEvent('override-reset') },
|
||||||
|
-- misc
|
||||||
|
{ key = 'f', mods = 'LEADER', action = act.ToggleFullScreen },
|
||||||
-- tabs
|
-- tabs
|
||||||
{ key = 'c', mods = 'LEADER', action = act.SpawnTab('DefaultDomain') },
|
{ key = 'c', mods = 'LEADER', action = act.SpawnTab('DefaultDomain') },
|
||||||
{ key = 'n', mods = 'LEADER', action = act.ActivateTabRelative( 1) },
|
{ key = 'n', mods = 'LEADER', action = act.ActivateTabRelative( 1) },
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue