wilder.nvim
wilder.nvim copied to clipboard
A more adventurous wildmenu
Hey. After a while of using wilder I noticed that history is not being saved. What can I do about this? This is my config: ```lua local wilder = require...
With the following config ```lua local wilder = require('wilder') wilder.setup({ modes = {':', '/', '?'}, }) wilder.set_option('renderer', wilder.popupmenu_renderer{ highlighter = wilder.lua_pcre2_highlighter(), -- Also with this one: --highlighter = wilder.basic_highlighter(), })...
When searching in Vim `help` files (`:h xxx`), `wilder#wildmenu_renderer` causes background of current match to flicker. I haven't observed this issue in other file types. Neovim version: ``` NVIM v0.7.0...
Issue: On Windows, if you type `:e ~/` there will be no completion shown. (`:e ~\` still works as expected.) Steps to reproduce: 1. Open Neovim 2. Enter `:e ~/`...
When I type `:` to enter the cmdline, the menu is shown as normal. However, when I continue to type `s`, the menu is stuck there. Please see the screenshot...
Hi, I randomly (not too often though, maybe once a day) get the following error: ``` Error executing luv callback: ...vim/site/pack/packer/opt/wilder.nvim/lua/wilder/shim.lua:10: E5560: vimL function must not be called in a...

The menu still remains when I have left command mode. 
my vim configuration uses autochdir, but the current path is not changed when the wilder executes : e /path/of/ file
I would love it if Wilder automatically selected the first item in the suggestion list but without inserting its text into the command-line. And calling `wilder#accept_completion()` would insert the text...