https://github.com/kyoshidajp/vscode-tosa
VS Code extension which opens pull request page from commit hash
https://github.com/kyoshidajp/vscode-tosa
git github typescript vscode vscode-extension
Last synced: 12 months ago
JSON representation
VS Code extension which opens pull request page from commit hash
- Host: GitHub
- URL: https://github.com/kyoshidajp/vscode-tosa
- Owner: kyoshidajp
- License: mit
- Created: 2018-03-11T05:58:55.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-08-02T20:13:04.000Z (almost 5 years ago)
- Last Synced: 2023-04-06T16:45:53.289Z (about 3 years ago)
- Topics: git, github, typescript, vscode, vscode-extension
- Language: TypeScript
- Homepage:
- Size: 320 KB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# VS Code TOSA
[](https://marketplace.visualstudio.com/items?itemName=kyoshidajp.vscode-tosa)
[](https://travis-ci.org/kyoshidajp/vscode-tosa)
A [Visual Studio Code](https://code.visualstudio.com/) [extension](https://marketplace.visualstudio.com/VSCode) which opens pull request page from line you selected. You can more easily find why the code is included by the page.

If you want to run not only on VS Code also CLI? You can get CLI version from [here](https://github.com/kyoshidajp/tosa).
## Settings Options
This extension contributes the following variables to the [settings](https://code.visualstudio.com/docs/getstarted/settings):
| name | type | description | default |
| :--- | :--- | :---------- | :------ |
| `vscodetosa.token` | string | A Token to access GitHub API v3.
If set `""`, you can't access private repository. | `""` |
| `vscodetosa.openSystemBrowser` | boolean | Open pull request page on a System Web Browser.
If set `false`, then open inline HTML view. | `true` |
| `vscodetosa.git` | string | A path of git command.
If set `""`, then used `git` in `PATH`. | `""` |
| `vscodetosa.browser` | string | A command of web browser which opens the pull request when `vscodetosa.openSystemBrowser` is `true`.
If set `""`, then uses a System Web Browser.
An example to open by Safari on macOS.
`open -a Safari` | `""` |

## Author
[Katsuhiko YOSHIDA](https://github.com/kyoshidajp)