开发者

Vim: Recommendations for vimball plugins in pathogen

开发者 https://www.devze.com 2023-01-16 22:24 出处:网络
I plan to switch to vim 7.3 in the next days on my windows box - linux 开发者_StackOverflow中文版will soon follow. I also plan to switch my vim setup and let pathogen handle my plugins.

I plan to switch to vim 7.3 in the next days on my windows box - linux 开发者_StackOverflow中文版will soon follow. I also plan to switch my vim setup and let pathogen handle my plugins. I've googled but not yet found a solution how to handle plugins using vimball technique for setup. Any hints?


You are looking for :UseVimball [path]

Open the vimball up with vim. Instead of sourcing it with :so % do

$ vim somthing.vba
:!mkdir ~/.vim/bundle/bundle-dir-name-here
:UseVimball ~/.vim/bundle/bundle-dir-name-here

Note you will have to make sure the path exists before you execute this command.

:h :UseVimball


You can try vim-addon-manager: it is able to put every plugin in a separate directory and correctly handles Vimball.

0

精彩评论

暂无评论...
验证码 换一张
取 消