rhysd / committia.vim

A Vim plugin for more pleasant editing on commit messages
MIT License
731 stars 30 forks source link

add vimproc support #24

Closed bleis-tift closed 8 years ago

bleis-tift commented 8 years ago

The system command does not work at Git for Windows. So use vimproc#system instead if it can be used.

rhysd commented 8 years ago

In committia/git.vim, v:shell_error is used at some places (e.g. here). It works well only for system() builtin function and doesn't for vimproc#system(). For vimproc#system(), we should use vimproc#get_last_status(). Could you fix it?

rhysd commented 8 years ago

I'll close this because: