| From the neovim doc,
In Vimscript:
    `set completeopt=menu,menuone,noselect`
In Lua using `vim.o`:
    `vim.o.completeopt = 'menu,menuone,noselect'`
In Lua using `vim.opt`:
    `vim.opt.wildignore = { 'menu', 'menuoune', 'noselect' }` | ||
|---|---|---|
| .. | ||
| core | ||
| plugins | ||