super comma

This commit is contained in:
andrzej 2024-06-25 22:15:31 +02:00
parent f2432d6989
commit 0b796a146c
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ vim.keymap.set({ "i", "n" }, "<M-->", "<cmd>b#<cr>", { desc = "Previous buffer."
--SUPER COMMA
-- go to next comma and press enter
vim.keymap.set("n", "<C-,>", "f,a<cr><esc>")
vim.keymap.set("n", "<M-,>", "f,a<cr><esc>")
-- add a comma at end of line and CR
vim.keymap.set("i", "<M-,>", "<esc>A,<cr>")