MarcWeber / vim-addon-manager

manage and install vim plugins (including their dependencies) in a sane way. If you have any trouble contact me. Usually I reply within 24 hours
Other
660 stars 59 forks source link

vam on windows (with msysgit) has side effects when installing addons #138

Closed suxpert closed 10 years ago

suxpert commented 10 years ago

I'm using msysgit (portable version) on windows, because it provides lots utilities such as wget, curl, uzip et al, using vam under windows is not so difficult.

But there's one big different between msysgit and the linux version: vam use a command git clone --help somewhere when installing, but msysgit use html files for help rather than print to the console, so anytime vam installs a plugin, windows will open up a browser for the help page, it really feels bad :(

So if possible, please consider a different command rather than git clone --help in a new version of vam. :)

BTW vam is great! (If not mention those confusing names and long folder names ^_^ )

MarcWeber commented 10 years ago

long names can be adjusted, see plugin_dir_by_name setting. Thanks for contributing. Also consider contributing to http://vim-wiki.mawercer.de/wiki/index.html and make sure you know about http://vam.mawercer.de/. This service could be extended so that only curl would be required on windows.

ZyX-I commented 10 years ago

It may not be a proper fix: git help help contains options --man, --web, --info, thus proper fix may be using git help clone --man. Need a person with msys git to find out what happens in case git help --man clone is used.

suxpert commented 10 years ago

@ZyX-I D:>git help --man clone warning: failed to exec 'man': No such file or directory fatal: no man viewer handled the request

ZyX-I commented 10 years ago

Thanks. I guess replacing --man with --info also does not work, does it?

suxpert commented 10 years ago

yep, msysgit doesn't provide man or info, although msys does.