vim-to-github
vim-to-github copied to clipboard
Will take you from Vim to GitHub
Fixes https://github.com/tonchis/vim-to-github/issues/18! This PR assumes that the origin repo is always a GitHub instance, which adds compatibility for company-hosted GitHub Enterprise instances with a different site name. This replaces the...
This plugin works great for all github.com repos, but it does not work with GitHub hosted on other site names, like company-hosted GitHub Enterprise instances. For example, with GitHub hosted...
Closes https://github.com/tonchis/vim-to-github/issues/14! This PR adds `:ToGithubBlame` so users can open the "blame" route in GitHub for the same file location. This is achieved simply by replacing "blob" with "blame" in...
Fixes https://github.com/tonchis/vim-to-github/issues/16! This PR adds `?plain=1` to the URLs so that GitHub always opens in the code view. This is helpful when working in markdown, for example, because GitHub would...
When viewing a markdown file, if I run `:ToGithub`, I get a URL like: [ https://github.com/tonchis/vim-to-github/blob/9ea9c75b6cd48bd42823a39c56a05a2ff8161536/README.md#L3-L3](https://github.com/tonchis/vim-to-github/blob/9ea9c75b6cd48bd42823a39c56a05a2ff8161536/README.md#L3-L3) However, this link brings up the HTML representation of the markdown file, not the...
This should be a quick-n-easy one! I often use this plugin to look up contributors to specific lines of code, and will sometimes look at PRs that shipped specific changes...
For example on a `$ git remote -v` ``` gt https://github.com/ocaml/ocaml-re.git (fetch) gt https://github.com/ocaml/ocaml-re.git (push) origin https://github.com/rgrinberg/ocaml-re.git (fetch) origin https://github.com/rgrinberg/ocaml-re.git (push) ``` I'd like to use `gt` and `origin` as...