vzze/cmdline.nvim

github github
command-line
stars 13
issues 0
subscribers 1
forks 0
CREATED

2023-01-27

UPDATED

yesterday


cmdline.nvim

cmdline.nvim is a wildmenu replacement which brings Helix's command-line to Neovim

Requirements

  • Neovim 0.11.0 or later

Setup

Installation

Install vzze/cmdline.nvim with the plugin manager of your choice.

Options

require('cmdline').setup({
    cmdtype = ":", -- you can also add / and ? by using ":/?"
                   -- as a string

    window = {
        matchFuzzy = true,
        offset     = 1,    -- depending on 'cmdheight' you might need to offset
        debounceMs = 10    -- the lower the number the more responsive however
                           -- more resource intensive
    },

    hl = {
        default   = "Pmenu",
        selection = "PmenuSel",
        directory = "Directory",
        substr    = "LineNr"
    },

    column = {
        maxNumber = 6,
        minWidth  = 20
    },

    binds = {
        next = "<Tab>",
        back = "<S-Tab>"
    }
})

Acknowledgements

smolck/command-completion.nvim for doing most of the dirty work

Helix for having a cool command-line