jaydorsey / vim-to-github

Will take you from Vim to GitHub

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

vim-to-github

Taking you from Vim to GitHub.

:ToGithub

Will fire up the browser, opening the file and LOC of the current buffer in GitHub.

Visual mode is supported!

:'<,'>ToGithub

ToGithub makes up the url from the origin fetch url in your $ git remote -v.

If you need to hit another username do:

:ToGithub username

It's the same to replace the repo name:

:ToGithub username repo

You can also set a global option to copy the url in the clipboard instead of opening the browser

let g:to_github_clip_command = 'pbcopy'
let g:to_github_clipboard = 1

Installation

Pathogen will do

$ cd ~/.vim/bundle
$ git clone https://github.com/tonchis/vim-to-github.git

Or just good old copy and paste.

Caveats

:ToGithub will give you a link to a specific commit. If you work and commit but don't push to GitHub, you will see a 404.

Thanks

  • To @kandalf for the initiative!
  • To @mattn for the Gist plugin! I took inspiration (and code) from him.

About

Will take you from Vim to GitHub

License:MIT License


Languages

Language:Vim Script 100.0%