Jit

Results 52 comments of Jit

Thanks for using the plugin! You can set this up with the following config: ```vim " Clear all default keys call wilder#setup({ \ 'modes': ['/', '?', ':'], \ 'next_key': 0,...

I made a mistake in the config, setting to `v:false` should prevent any of the mappings.

I've set up `wilder` and `dashboard` but am unable to reproduce this issue. One possibility is there is a `BufEnter/Leave` autocommand in your config which is attempting to trigger for...

Thanks for the report! Look like the Lua shim needs to use `schedule_wrap` when garbage collecting. I've pushed 0ccdda736de136ac7ef9ce8fc7a77567f251b324 which should fix this issue.

Apologies for the delay! This technically isn't a bug - `wilder#python_search_pipeline()` expects the pattern to be a PCRE2 pattern. I don't attempt to do any translation of Vim's escaped characters/matched...

The normal search features of Vim/Neovim will still work despite the error shown for `wilder` e.g. `incsearch` will continue working as normal, just that there will be no suggestions from...

Thanks for using! Do you have any error logs from the `:UpdateRemotePlugins` call? Or any errors encountered when running `:PlugUpdate/Install`? Another reason might be that `:UpdateRemotePlugins` might not immediately apply...

Could you help paste the `Plug` portion of the your `init.vim` (between `plug#begin()` and `plug#end()`)? I suspect this might be due to lazy loading the plugin.

I'm able to reproduce this problem. It looks like my recommendation of using `Plug 'gelguy/wilder.nvim', { 'do': ':UpdateRemotePlugins' }` is wrong and does not work as intended. The proper way...

I've narrowed down the cause to Neovim's runtime files not being refreshed in a call to `nvim_get_runtime_files()` when `UpdateRemotePlugins` is called. The workaround would be to explicitly set `&rtp` to...