feat: add multicursor support with new keybindings

This commit is contained in:
2024-09-24 14:50:14 -04:00
parent e65a2e11d6
commit aa5351d41f
3 changed files with 170 additions and 0 deletions
+6
View File
@@ -45,6 +45,12 @@ for _, map in ipairs(data.keys.splits.swap) do
add_keymap(map[1], map[2], map[3], data.types.all_modes)
end
-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ MultiCursor ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
-- Add keymaps for multicursor
for _, item in ipairs(data.keys.multicursor) do
add_keymap(item)
end
-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Overrides ━━━━━━━━━━━━━━━━━━━━━━━━━━
-- Add keymaps for overrides
add_keymap(data.keys.overrides)