remove undo/redo since that gives issues

This commit is contained in:
Folke Lemaitre 2025-10-20 07:32:13 +02:00
parent d6cc9d7276
commit a497f38839
No known key found for this signature in database
GPG key ID: 9B52594D560070AB

View file

@ -51,14 +51,6 @@ vim.api.nvim_create_autocmd("User", {
end) end)
end end
-- Keep undo/redo lists in sync with VsCode
vim.keymap.set("n", "u", function()
vscode.call("undo")
end)
vim.keymap.set("n", "<C-r>", function()
vscode.call("redo")
end)
-- Navigate VSCode tabs like lazyvim buffers -- Navigate VSCode tabs like lazyvim buffers
vim.keymap.set("n", "<S-h>", function() vim.keymap.set("n", "<S-h>", function()
vscode.call("workbench.action.previousEditor") vscode.call("workbench.action.previousEditor")