nest.nvim
nest.nvim copied to clipboard
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...
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,...
[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...
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 {...
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...