diff --git a/CONFIG/nvim/init.lua b/CONFIG/nvim/init.lua index 9037596..23131de 100644 --- a/CONFIG/nvim/init.lua +++ b/CONFIG/nvim/init.lua @@ -213,7 +213,12 @@ map("n", "p", "tabprevious", { desc = "Previous Tab" }) -- other map("n", "cw", [[:cd %:p:h]], { desc = "Set Workspace To Buffer Path" }) map("n", "o", "m`o``", { desc = "Insert Newline" }) -map("n", "\\", "n.", { noremap = true, silent = true, desc = "Repeat And Goto Next" }) +map( + "n", + "\\", + function() vim.api.nvim_feedkeys(vim.api.nvim_replace_termcodes("n.", true, true, true), "n", true) end, + { noremap = true, silent = true, desc = "Repeat And Goto Next" } +) map("n", "", "Lazy", { desc = "Lazy" }) map( "n",