This plugin provides :GTravisBrowse
command to browse the build page of a git commit in Travis CI. You can use it without any arguments, which references to the HEAD commit or giving a commit reference as follows.
:GTravisBrowse
:GTravisBrowse HEAD^
:GTravisBrowse HEAD~3
:GTravisBrowse 6cfb346
:GTravisBrowse some-branch-name
It follows vim-fugitive command naming pattern and is only available when the current buffer is inside of a git managed folder.
It depends on vim-fugitive and webapi-vim plugins. These plugins depend on git and curl, so make sure you have them installed. If you use Vundle, you can install this plugin placing the following commands in you .vimrc.
Bundle 'tpope/vim-fugitive'
Bundle 'mattn/webapi-vim'
Bundle 'iurifq/vim-travis-ci'
- Support github private repositories via OAuth authentication
- Support multiple remote repositories
- Handle errors while accessing external API