A neovim plugin consisting my custom shortcuts for fast file editing with RegEx patterns.
Using lazy.nvim:
return {
-- Other plugins...
{
"Chamal1120/easyedit.nvim",
config = function()
require("easyEdit").setup()
end,
},
}
- To rename all occurances of the same word in the current buffer:
:WR Existing_Word New_Word
(More shortcuts coming soon..)
A hobby project started coz I was annyoed by typing lengthy Regexp patterns. This is Open Source, so any contribution is welcome.