Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bwintertkb/enclose_nav.nvim
https://github.com/bwintertkb/enclose_nav.nvim
Last synced: 24 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/bwintertkb/enclose_nav.nvim
- Owner: bwintertkb
- License: apache-2.0
- Created: 2022-12-29T16:29:41.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-29T18:44:30.000Z (about 2 years ago)
- Last Synced: 2024-11-07T02:37:38.307Z (about 2 months ago)
- Language: Lua
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- my-neovim-pluginlist - bwintertkb/enclose_nav.nvim - commit/bwintertkb/enclose_nav.nvim) ![](https://img.shields.io/github/commit-activity/y/bwintertkb/enclose_nav.nvim) (Editing support / Insert)
README
# enclose_nav
This is a small plugin which currently let's you jump past the the next closure, i.e. if you have the following
```rust
let a = vec![(1, 2, 3), (4, 5, 6)];
```
and you cursor is on the `l` of `let` then by pressing `ctrl` and `e` in insert mode the cursor would jump to the after the closing bracket of `3`, then `6` and the after `]`.
### Installation
Using `packer`
```lua
use 'bwintertkb/enclose_nav.nvim'
```
### Setup
```lua
require("enclose_nav").setup()
```
### License
The plugin is ditributed under the [Apache License, Version 2.0](https://opensource.org/licenses/Apache-2.0)