To integrate vim with Git, I don't use vim-fugitive, but Gina:
https://github.com/lambdalisue/gina.vim
Everything is fine with it except that it takes a long time to type :Gina
. So I made myself a one-letter alias:
command -nargs=+ G :Gina <args>
And now I can do this:
:G status
:G add lib
:G commit -v
:G push
Top comments (0)