Made ctrl space work and added json support

This commit is contained in:
Zackarias Montell
2025-05-16 08:43:12 +02:00
parent 5cfc25668c
commit 3a964ff800
3 changed files with 38 additions and 10 deletions

View File

@@ -55,6 +55,14 @@ return {
-- change here to key="b", mods="CMD" for ^+b equivalent in tmux.
leader = { key = "b", mods = "CTRL", timeout_milliseconds = 1000 },
keys = {
{
key = " ",
mods = "CTRL",
action = act.SendKey({
key = " ",
mods = "CTRL",
}),
},
{ key = "LeftArrow", mods = "OPT", action = act.SendString("\x1bb") },
{ key = "RightArrow", mods = "OPT", action = act.SendString("\x1bf") },