Is anyone aware of a plugin for Vim that will allow me to open the current file on Github (or ideally, even the current selection if in visual mode)?
I had this plugin previously for Sublime Text, and now that I’m using Vim, would like to have the same thing.
edit: I am looking for a plugin that will open my web browser to the page on github.com that corresponds to the file I’m currently editing. E.g., If I was editing foo/bar.js in my local clone of the quux repo in Vim, using this plugin would open https://github.com/dtb/Quux/blob/master/foo/bar.js. This is equivalent to ST2-Githubinator.
The fugitive.vim plugin has
:help fugitive-:Gbrowsethat will do what you want. It’s also awesome in general.