]> git.rmz.io Git - dotfiles.git/commitdiff
wezterm: disable ALT+Enter binding to ToggleFullscreen
authorSamir Benmendil <me@rmz.io>
Sun, 7 Apr 2024 00:37:44 +0000 (01:37 +0100)
committerSamir Benmendil <me@rmz.io>
Sun, 7 Apr 2024 00:37:44 +0000 (01:37 +0100)
I think I use it for something else, likely neorg. I don't want the
binding anyway, got Super+F.

wezterm/wezterm.lua

index 579775f4a16861aa5615c7e3ab279462d2570534..2689c2cb37fe96523db7a7e9c795efd4e3ea6c6f 100644 (file)
@@ -33,6 +33,11 @@ config.keys = {
       end),
     },
   },
+  {
+    key = 'Enter',
+    mods = 'ALT',
+    action = wezterm.action.DisableDefaultAssignment,
+  },
 }
 
 return config