megaannum / vimside

Vim Scala IDE (VimSIde) built upon ENSIME
150 stars 18 forks source link

Can't start vimside #4

Closed aloiscochard closed 11 years ago

aloiscochard commented 11 years ago

After entering: 'call vimside#StartEnsime', I get:

Starting Ensime Engine ... Error detected while processing function vimside#StartEnsime: line 10: E605: Exception not caught: Plugin Error: ['Requires Vimproc plugin: https://github.com/Shougo/vimproc']

... but vimproc is correctly installed, at least it why I guess because I see it when doing ":scriptnames".

Any suggestion? would love to try it out!

megaannum commented 11 years ago

Enter:

:echo vimproc#host_exists('localhost') or echo vimproc#version()

I expect you did not compile the vimproc proc.c file.

Near the top of the file, .vim/autoload/vimside/vimplugins.vim there is the code:

function! vimside#vimplugins#Check() let errors = g:vimside.errors let warns = g:vimside.warns

" Required plugins silent! call vimproc#version() if ! exists("*vimproc#version") call add(errors, "Requires Vimproc plugin: https://github.com/Shougo/vimproc") endif

....

endfunction

Its where Vimside check to see if needed thirdparty plugins can be found.

Richard

On 12/03/2012 03:32 AM, Alois Cochard wrote:

After entering: 'call vimside#StartEnsime', I get:

Starting Ensime Engine ... Error detected while processing function vimside#StartEnsime: line 10: E605: Exception not caught: Plugin Error: ['Requires Vimproc plugin: https://github.com/Shougo/vimproc']

... but vimproc is correctly installed, at least it why I guess because I see it when doing ":scriptnames".

Any suggestion? would love to try it out!

— Reply to this email directly or view it on GitHub https://github.com/megaannum/vimside/issues/4.

Quis custodiet ipsos custodes

aloiscochard commented 11 years ago

Oh yeah my bad, forget to recompile after I'v clean some stuff and recloned the repo :-(

Thank you

I have a bunch of other errors now, probably I did something wrong with the options_user.vim file... i'll investigate.

fayimora commented 11 years ago

Did you come across the vimside-log-file-path error? If yes how did you fix it? Screen Shot 2013-01-10 at 22 45 43

Thanks

megaannum commented 11 years ago

Looking at the code in vimside/options/manager.vim where it deals with vimside-log-file-path, there was a bug. I will check in the fix with a couple of other fixes this weekend. Thank! Richard

On 01/10/2013 02:46 PM, Fayimora Femi-Balogun wrote:

Did you come across the |vimside-log-file-path| error? If yes how did you fix it? Screen Shot 2013-01-10 at 22 45 43 https://f.cloud.github.com/assets/648684/58594/90a866e0-5b77-11e2-866c-d2fa21a0213e.png

Thanks

— Reply to this email directly or view it on GitHub https://github.com/megaannum/vimside/issues/4#issuecomment-12122939.

Quis custodiet ipsos custodes

fayimora commented 11 years ago

Thanks. I'll be expecting it.