You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
" TODO: need to figure out the nvim python bugcallwilder#setup({'modes': [':', '/', '?']})
ifhas('python')
" For Neovim or Vim with yarp" For wild#cmdline_pipeline():" 'language' : set to 'python' to use python" 'fuzzy' : 0 - turns off fuzzy matching" : 1 - turns on fuzzy matching" : 2 - partial fuzzy matching (match does not have to begin with the same first letter)" For wild#python_search_pipeline():" 'pattern' : can be set to wilder#python_fuzzy_delimiter_pattern() for stricter fuzzy matching" 'sorter' : omit to get results in the order they appear in the buffer" 'engine' : can be set to 're2' for performance, requires pyre2 to be installed" : see :h wilder#python_search() for more detailscallwilder#set_option('pipeline', [
\ wilder#branch(
\ wilder#cmdline_pipeline({
\ 'language': 'python',
\ 'fuzzy': 1,
\ }),
\ wilder#python_search_pipeline({
\ 'pattern': wilder#python_fuzzy_pattern(),
\ 'sorter': wilder#python_difflib_sorter(),
\ 'engine': 're',
\ }),
\ ),
\ ])
endififg:has_popup_winlets:highlighters= [
\ wilder#pcre2_highlighter(),
\ wilder#basic_highlighter(),
\ ]
callwilder#set_option('renderer', wilder#renderer_mux({
\ ':': wilder#popupmenu_renderer({
\ 'highlighter': s:highlighters,
\ 'left': [
\ '', wilder#popupmenu_devicons(),
\ ],
\ 'right': [
\ '', wilder#popupmenu_scrollbar(),
\ ],
\ }),
\ '/': wilder#popupmenu_renderer({
\ 'highlighter': s:highlighters,
\ }),
\ }))
endif
I got the following error when I pressed /
after using UpdateRemotePlugins, the wilder is still NOT registered.
I also checked the let g:loaded_remote_plugins with :verbose et g:loaded_remote_plugins. And I got:
Cloud you please help me with that?
The text was updated successfully, but these errors were encountered:
I had the exact same issue, but in my case, the problem was a plugin for black (the python formatter). So I just needed to remove Wilder, install black (to fix my issues with that plugin) run UpdateRemotePlugins to register the black plugin, install Wilder again and run UpdateRemotePlugins again to register Wilder.
Please check if you have any other problematic plugin, fix it and then try again
This behavior same as #203. After :UpdateRemotePlugins, the rplugin manifest file (as pointed in the screenshot in the first comment) still does not contain anything useful, which leads to the failure.
This needs neovim to check as I posted neovim/neovim#30470
And this remote plugin mechanism is being deprecated soon. neovim/neovim#27949
For now, I have to comment out using this plugin.
nvim version:
wilder configuration:
I got the following error when I pressed
/
after using
UpdateRemotePlugins
, the wilder is still NOT registered.I also checked the
let g:loaded_remote_plugins
with:verbose et g:loaded_remote_plugins
. And I got:Cloud you please help me with that?
The text was updated successfully, but these errors were encountered: