Penaz91/MiniDYM

github github
utility
stars 3
issues 0
subscribers 2
forks 0
CREATED

UPDATED


MiniDYM

A very small "did you mean?" plugin for Neovim. Also a rewrite of my fzf_dym plugin.

Installing

You can use lazy.nvim and the following configuration:

    {
        'penaz91/MiniDYM',
        config = function()
            require('minidym').setup()
        end
    },

You can customize the prompt as follows:

require('minidym').setup{
    prompt="Your custom prompt here"
}

Or you can force filetype detection after opening the file using

require('minidym').setup{
    redetect_ft=true
}

Suggestions

I suggest one of the following plugins:

to patch the native nvim.ui.select with a fuzzy finder (like FZF).