comment out 'save all' keymap as it was screwing up with typing >s

This commit is contained in:
andrzej 2024-05-05 23:34:25 +02:00
parent e4005ea220
commit abb82d74d9
1 changed files with 2 additions and 2 deletions

View File

@ -38,8 +38,8 @@ vim.keymap.set("n", "<leader>dab", '<cmd>:%bdelete|edit #|normal`"<CR>', { desc
--SAVE
vim.keymap.set({ "n", "i" }, "<C-s>", "<cmd>w<CR>", { desc = "save" })
vim.keymap.set({ "n", "i" }, "<C-sa>", "<cmd>wa<CR>", { desc = "save" })
--vim.keymap.set({ "n", "i" }, "<C-sa>", "<cmd>wa<CR>", { desc = "save" })
--
--DIAGNOSTIC POPUP
vim.keymap.set("n", "<leader>dp", function()
vim.diagnostic.open_float()