Jit

Results 52 comments of Jit

The function above is needed as well: ```vim function! UpdateRemotePlugins(...) " Needed to refresh runtime files let &rtp=&rtp UpdateRemotePlugins endfunction ``` Are there any other errors in `:mess`? I think...

This is due to the cmdline completion for `Man` (`man#complete`) taking a while (sometimes over 1 second) to get completions. Since it does so synchronously, Vim is blocked until the...

Hi, thanks for trying out the plugin! There's a section in the README which describes how to reduce the startup time: https://github.com/gelguy/wilder.nvim#faster-startup-time. The plugin will be lazily loaded on the...

Unfortunately this isn't possible currently. I'll see if this is implement-able or if I have to change the pipeline architecture to accommodate this.

Wanted to double-check how `set completeopt+=noinsert` works: Should tabbing with `wilder#next()` to next/previous candidates insert text into the command-line? Or is text only inserted after `wilder#accept_completion()` is called?

I've added this as part of #68 but it's not documented as I wanted to check if this is the expected behavior. You can enable it by setting: ```vim call...

There's some issues with writing the configuration fully in Lua due to https://github.com/neovim/neovim/issues/13436. I'll explore if writing wrappers in Lua will help avoid this issue. Regarding the `vim.cmd` block, 1....

For the first case I can't reproduce it (although I'm not using `packer`, just an `init.lua`). For the second case there last `)` is missing the leading `\`.

I'm working on a workaround for neovim/neovim#13436, which will allow easier configuration in Lua. Will update here when the PR is merged.

I've merged #115 which includes an experimental Lua shim for `wilder`. There is no documentation (since it is highly experimental), but the configuration should be straightforward: For every `wilder#` method,...