Error on any search with vim-oblique
brandonpittman opened this issue · 5 comments
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.
👍