https://github.com/chamal1120/easyedit.nvim
A simple neovim plugin to ease out lengthy vim cmds for RegEx based text editing
https://github.com/chamal1120/easyedit.nvim
lua neovim neovim-plugin regex
Last synced: 10 months ago
JSON representation
A simple neovim plugin to ease out lengthy vim cmds for RegEx based text editing
- Host: GitHub
- URL: https://github.com/chamal1120/easyedit.nvim
- Owner: Chamal1120
- License: mit
- Created: 2025-01-19T09:14:59.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-19T16:44:45.000Z (about 1 year ago)
- Last Synced: 2025-03-15T09:27:42.879Z (about 1 year ago)
- Topics: lua, neovim, neovim-plugin, regex
- Language: Lua
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# EasyEdit.nvim

A neovim plugin consisting my custom shortcuts for fast file editing with [RegEx](https://en.wikipedia.org/wiki/Regular_expression) patterns.
## Installation
Using lazy.nvim:
```lua
return {
-- Other plugins...
{
"Chamal1120/easyedit.nvim",
config = function()
require("easyEdit").setup()
end,
},
}
```
## Usage
01. 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.