Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 808 Bytes

README.md

File metadata and controls

38 lines (24 loc) · 808 Bytes

EasyEdit.nvim

GitHub License

A neovim plugin consisting my custom shortcuts for fast file editing with RegEx patterns.

Installation

Using lazy.nvim:

return {
  -- Other plugins...
  {
    "Chamal1120/easyedit.nvim",
    config = function()
      require("easyEdit").setup()
    end,
  },
}

Usage

  1. To rename all occurances of the same word in the current buffer:

:WR Existing_Word New_Word

(More shortcuts coming soon..)

Contributing

A hobby project started coz I was annyoed by typing lengthy Regexp patterns. This is Open Source, so any contribution is welcome.