wrappers/wezterm: map C-CR and S-CR

This commit is contained in:
Nikodem Rabuliński 2024-11-01 13:19:37 +01:00
parent d56d339de7
commit 21e423b811

View file

@ -9,6 +9,10 @@ local cfg = {
native_macos_fullscreen_mode = true,
hide_mouse_cursor_when_typing = false,
front_end = "WebGpu",
keys = {
{ key = "Enter", mods = "CTRL", action = wezterm.action { SendString = "\x1b[13;5u" } },
{ key = "Enter", mods = "SHIFT", action = wezterm.action { SendString = "\x1b[13;2u" } },
},
}
if string.find(wezterm.target_triple, "darwin") then