wezterm: Remove emoji picker key bind

I use my own 'bemoji' picker everywhere, including wezterm.
This commit is contained in:
Marty Oehme 2025-09-23 20:19:16 +02:00
parent 926aee71e8
commit 99fd7a78a5
Signed by: Marty
GPG key ID: 4E535BC19C61886E

View file

@ -3,6 +3,7 @@ local act = wezterm.action
local keys = {
{ key = "L", mods = "CTRL|SHIFT", action = "DisableDefaultAssignment" },
{ key = "U", mods = "CTRL|SHIFT", action = "DisableDefaultAssignment" },
{ key = "[", mods = "CTRL", action = act.ScrollToPrompt(-1) },
{ key = "]", mods = "CTRL", action = act.ScrollToPrompt(1) },