VS Code GitHub Opener

Extension for Visual Studio Code which can be used to quickly open the GitHub repository in your browser

Installation
You can install this extension from the VS Code Marketplace:
- Open VS Code
- Press
Ctrl+Shift+X
to open the Extensions view
- Search for "Github Opener"
- Click Install
Or install from command line:
code --install-extension caphefalumi.vscode-github-opener
Usage
Command
Press F1
and type Open in GitHub
.
Keyboard Shortcut
Press Ctrl+Alt+G
to open the current repository in GitHub.
Right click on any file in the Explorer and choose Open in GitHub
.
Configuration
You can configure a custom GitHub domain for GitHub Enterprise:
{
"openInGitHub.gitHubDomain": "your-custom-github-domain.com"
}
Development
To build and package the extension:
# Install dependencies
bun install
# Build for development
bun run esbuild
# Build for production
bun run vscode:prepublish
# Package extension
bun run package
License
MIT © caphefalumi