On 2012-05-16 18:31:40, Ming-Hsuan TU wrote:
> You have to create sub-directory under eclim such as eclim/after/plugin,and put your additional vim script(which calls eclimAvliable..) in the sub-directory.
That'll work. Another option is to force the eclim plugin to load
before calling eclim#EclimAvailable():
runtime plugin/eclim.vim
if eclim#EclimAvailable():
...
endif
If the eclim vimfiles are under a pathogen/vundle/etc. dir, then
you'll have to either use 'source <absolute path>/plugin/eclim.vim' or
use the runtime version above after pathogen/vundle/etc. are loaded.
--
eric