I tried to install a plugin netrw.vba using vimball on vim 7.3 with :source %, but got this error
line 2:
E492: Not an editor command: UseVimball
I came across this post Trying to install a vimball having vimballPlugin installed, and followed the steps mentioned there to try fixing it, but did not work. :scriptnames shows {...}/gvim73/share/vim/vim73/plugin/vimballPlugin.vim so it seems to be loaded correctly.
What else could I explore to figure out this issue? Is there some setting I missed here?
In case the
plugin/vimballPlugin.vimscript has been loaded, the only conditions that prevent the definition of the command are::set compatible, falling back to old vi behavior (usually not what you want)g:loaded_vimballPluginsomewhere, explicitly suppressing the plugin:delcommand UseVimballafter the plugin is sourcedFind out which applies to you, and fix it.