fix: wezterm fullscreen keybind

This commit is contained in:
Noah Masur 2024-06-18 12:50:04 -06:00
parent 97cfaf0708
commit b78bbf2003
No known key found for this signature in database

View File

@ -149,6 +149,18 @@
mods = 'SHIFT|CTRL', mods = 'SHIFT|CTRL',
action = wezterm.action.DisableDefaultAssignment action = wezterm.action.DisableDefaultAssignment
}, },
-- alt-enter was "fullscreen"
{
key = 'Enter',
mods = 'ALT',
action = wezterm.action.DisableDefaultAssignment
},
-- make super-f "fullscreen"
{
key = 'f',
mods = 'SUPER',
action = wezterm.action.ToggleFullScreen
},
-- project switcher -- project switcher
{ {
key = 'P', key = 'P',