Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/ysmb-wtsg/in-and-out.nvim

Neovim plugin for quick navigation in and out of surrounding characters like quotes, parentheses, curly braces, and square brackets.
https://github.com/ysmb-wtsg/in-and-out.nvim

neovim-plugin

Last synced: 15 days ago
JSON representation

Neovim plugin for quick navigation in and out of surrounding characters like quotes, parentheses, curly braces, and square brackets.

Lists

README

        

# in-and-out.nvim



`in-and-out` is a Neovim plugin designed to quickly navigate in and out of surrounding characters like quotes (`"`, `'`), parentheses (`(`, `)`), curly braces (`{`, `}`), and square brackets (`[`, `]`).

![demo](https://github.com/ysmb-wtsg/in-and-out.nvim/assets/85178719/9b641329-bd71-4931-8ad8-c1051641ccd2)

## Installation

Using `lazy` or `packer`:

```lua
{
"ysmb-wtsg/in-and-out.nvim",
config = function()
vim.keymap.set("i", "", function()
require("in-and-out").in_and_out()
end
end,
}
```