This commit is contained in:
Rachel Lambda Samuelsson 2024-08-21 13:46:06 +02:00
parent 54fa622c0b
commit 8ef63b0d86

View File

@ -82,10 +82,12 @@ for key, dir in pairs({ h = 'Left', j = 'Down', k = 'Up', l = 'Right' }) do
table.insert(config.keys, { table.insert(config.keys, {
key = key, key = key,
mods = 'CTRL', mods = 'CTRL',
action = act.ActivatePaneDirection(dir),
}) })
table.insert(config.keys, { table.insert(config.keys, {
key = key, key = key,
mods = 'LEADER', mods = 'LEADER',
action = act.SplitPane { direction = dir },
}) })
end end