A very small "did you mean?" plugin for Neovim. Also a rewrite of my fzf_dym plugin.
You can use lazy.nvim and the following configuration:
{
'penaz91/MiniDYM',
config = function()
require('minidym.minidym').setup()
end
},
You can customize the prompt as follows:
require('minidym.minidym').setup{
prompt="Your custom prompt here"
}
I suggest using dressing.nvim (now archived) or snacks.nvim to patch the native nvim.ui.select
with a fuzzy finder (like FZF).