junegunn/vim-oblique

Error on any search with vim-oblique

brandonpittman opened this issue · 5 comments

When I search, I'm getting an error that reads:

E117: Unknown function: <SID>parse_cmd_line

screen shot 2014-06-20 at 9 36 38 am

Strange. I can't even find parse_cmd_line in the code. git grep parse_cmd_line $(git rev-list --all) shows no match in both plugins (oblique and pseudocl). I don't know, maybe it's from other plugin. Could you grep through your plugins for the function?

And FWIW, I don't consider this plugin to be stable :)

Ah! It was vim-space that was causing the problem. After disabling it, oblique works fine. Thanks. Should've thought of that myself.

Also, I wrote up a blog post about vim-plug and fzf yesterday.

Okay, I'll take a look why oblique conflicts with vim-space when I have time.
And thanks for the post! Technically, vim-plug can be faster than Vundle because it launches multiple git pull processes (16 by default) using Ruby threads, while Vundle, written in Vimscript which has no notion of thread, cannot do so and has to install/update plugins one by one.

Thanks for the update! I added that to the post.

👍