nest.nvim icon indicating copy to clipboard operation
nest.nvim copied to clipboard

Results 10 nest.nvim issues
Sort by recently updated
recently updated
newest added

Hi LionC, this is an preliminary implementation and proposal for an integrations API. Right now this works but I'm sure it has a lot of bugs that need to be...

I have some keybindings that I need to define with the annotation, how can I currently do it?

If explicitly enabled, nest should add command(s) to inspect mappings in some simple in-editor UI. There are some options to be evaluated on how to open them: - Floating window...

core-feature

Instead of the current ``` - nest.lua - nest-modules |---inspec.lua ``` it should probably become ``` - nest |--- init.lua |--- modules |---|---inspect.lua ``` so that `require 'nest'` still works,...

good first issue
refactor

[nvim-mapper](https://github.com/lazytanuki/nvim-mapper) provides a way to find and remember key mappings, but it requires re-writing your mappings in its special format. The special format provides no benefits except for informing the...

integration

With the `name` feature, we should also introduce optional `tags`, a list of strings that cascades down and helps with searching or otherwise working with bindings later on. ```lua {...

core-feature

Use Vim's table functions and `vim.keymap.set` instead of `nvim_set_keymap`; the latter was introduced with Neovim v0.7. IMO, `vim.keymap.set` is more flexible as it allows lua functions as RHS and disables...