guns / vim-clojure-static

Meikel Brandmeyer's excellent Clojure runtime files
Other
420 stars 50 forks source link

Conflict with neocomplete #54

Closed DAddYE closed 8 years ago

DAddYE commented 10 years ago

Seems that the function clojurecomplete#Complete is already defined by neocomplete:

screen shot 2014-07-20 at 11 48 55 pm

guns commented 10 years ago

Hello!

My first thought is that neocomplete should rename the function since clojurecomplete#Complete ships with Vim itself:

https://code.google.com/p/vim/source/browse/runtime/autoload/clojurecomplete.vim

Thanks!

guns commented 10 years ago

But I'll look into it soon, since using function! (with the bang) should simply overwrite any existing functions at evaluation time.

sodiumjoe commented 10 years ago

any update on this?

sodiumjoe commented 9 years ago

@Shougo

Shougo commented 9 years ago

https://github.com/guns/vim-clojure-static/blob/master/ftplugin/clojure.vim

Yes, this plugin set completefunc. neocomplete uses completefunc. So, It conflicts with neocomplete.

You should see g:neocomplete#force_overwrite_completefunc.

guns commented 8 years ago

Shougo provided a way to deal this, so closing this old issue. Thanks Shougo!