Fixing readme

This commit is contained in:
2026-02-01 21:00:06 -05:00
parent dc86d0eafc
commit b867c6134a
5 changed files with 40 additions and 21 deletions

View File

@@ -15,11 +15,15 @@ return {
["Add Cursor Down"] = "<C-Down>", -- Like VS Code
["Add Cursor Up"] = "<C-Up>", -- Like VS Code
["Skip Region"] = "<C-x>", -- Skip current and go to next
["Remove Region"] = "<C-p>", -- Remove current cursor
["Remove Region"] = "<C-S-p>", -- Remove current cursor (changed from C-p)
["Undo"] = "u",
["Redo"] = "<C-r>",
}
-- Disable C-n and C-p in vim-visual-multi (reserved for buffer navigation)
vim.g.VM_maps["Select Cursor Down"] = ""
vim.g.VM_maps["Select Cursor Up"] = ""
-- Highlight settings
vim.g.VM_Mono_hl = "DiffText"
vim.g.VM_Extend_hl = "DiffAdd"