Add rhubarb.vim for fugitive Github support

We do most of our client work on Github,
and a large portion of our personal projects
are hosted there.

fugitive.vim currently supports
opening the current file in the current branch
in a browser at Github through the `Gbrowse` command.
That command is [slated to be removed to make fugitive
agnostic about coding sites](fugitive-docs).

The capability to quickly generate or view a Github URL
specific to the current branch
can be useful in PR reviews
or other discussions about code.

This change adds rhubarb.vim,
a plugin that implements the slated-to-be-removed
functionality of fugitive that works with Github.
It also provides the user with omni-completion (`<C-x><C-o>`)
to autocomplete Github issues, issue URLs, and collaborators.

[fugitive-docs]: 18d6d1ab82/doc/fugitive.txt
This commit is contained in:
Geoff Harcourt 2016-02-18 09:23:50 -05:00
parent 248fb06332
commit 3d867615a1

View file

@ -43,6 +43,7 @@ Plug 'tpope/vim-projectionist'
Plug 'tpope/vim-rails'
Plug 'tpope/vim-rake'
Plug 'tpope/vim-repeat'
Plug 'tpope/vim-rhubarb'
Plug 'tpope/vim-surround'
Plug 'vim-ruby/vim-ruby'
Plug 'vim-scripts/tComment'