feat(preview): open the previewed file on GitHub#329
Open
jongio wants to merge 1 commit into
Open
Conversation
Add an O keybinding to the preview panel that opens the current file on github.com, pinned to the current HEAD commit and anchored to the selected line range (or the top visible line). It reuses the existing permalink builder and the browser launcher, and shows a clear toast when the preview is not an on-disk file or the repo has no github remote. Registers the binding in the panel, the keybindings manifest, the generated docs, and the help overlay. Adds unit tests for the no-file and github-mode guards. Closes #324 Co-authored-by: Copilot App <[email protected]>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds an
Okeybinding to the preview panel that opens the current file on github.com in the browser, pinned to the current HEAD commit and anchored to the selected line range (or the top visible line).It reuses the existing permalink builder and the shared browser launcher, so behavior matches the
Ycopy-permalink action. When the preview is not showing an on-disk file, or the repo has no github remote, it shows a clear toast instead of doing nothing.What's included:
Ohandler in the preview panel that opens the file's github.com blob URL.keybindings.json, the generateddocs/keybindings.md, and the help overlay (which reads the manifest).Closes #324