pechorin / any-jump.vim

Jump to any definition and references 👁 IDE madness without overhead 🚀
1.07k stars 40 forks source link

autoload/search.vim not loaded when using Plug and Vim 9.0 #106

Open Konfekt opened 11 months ago

Konfekt commented 11 months ago

The file autload/search.vim is not loaded when using Plug and Vim 9.0.1632 on Opensuse 15.4 resulting in

Error detected while processing function <SNR>252_Jump:
line   37:
E117: Unknown function: search#SearchUsages

Adding runtime! autoload/search.vim resolves the issue.

jiangyinzuo commented 5 months ago

The file autload/search.vim is not loaded when using Plug and Vim 9.0.1632 on Opensuse 15.4 resulting in

Error detected while processing function <SNR>252_Jump:
line   37:
E117: Unknown function: search#SearchUsages

Adding runtime! autoload/search.vim resolves the issue.

@Konfekt Are you using plugins like autosuggest.vim also have an autoload/search.vim file?

This is not a bug in the plugin. This is caused by a namespace conflict between plugins.

Konfekt commented 5 months ago

Thank you! Indeed, I have a search.vim file in my local autoload folder.