Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/svban/Reverse.nvim
Reverse the lines in your buffer
https://github.com/svban/Reverse.nvim
lua neovim neovim-plugin vim
Last synced: 3 months ago
JSON representation
Reverse the lines in your buffer
- Host: GitHub
- URL: https://github.com/svban/Reverse.nvim
- Owner: svban
- Created: 2024-06-28T10:30:04.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-06-28T10:31:30.000Z (6 months ago)
- Last Synced: 2024-07-06T22:08:09.751Z (6 months ago)
- Topics: lua, neovim, neovim-plugin, vim
- Language: Lua
- Homepage:
- Size: 1000 Bytes
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- my-neovim-pluginlist - svban/Reverse.nvim - commit/svban/Reverse.nvim) ![](https://img.shields.io/github/commit-activity/y/svban/Reverse.nvim) (Editing support / Misc)
README
# reverse.nvim
- `reverse.nvim` is a simple Neovim plugin that allows you to reverse the lines in your buffer. You can reverse the entire buffer in normal mode or reverse a selected range of lines in visual mode.
- Yeah! I know its a useless plugin, but I needed it just for one time, so here it is, for future needs.## Installation
### Using [lazy.nvim](https://github.com/folke/lazy.nvim)```lua
{
"svban/reverse.nvim",
cmd = { "Reverse" },
opts = {},
}
```## Usage
- in Normal or Visual mode `:Reverse`## Inspiration
- [reverse.vim](https://github.com/vim-scripts/reverse.vim)