vscode-pull-request-github
vscode-pull-request-github copied to clipboard
GitHub Pull Requests for Visual Studio Code
Users can hover over issue references (e.g., `#123`, `GH-456`, `owner/repo#789`) to see issue details, but there was no command to open the issue on GitHub directly. ## Changes - **Command**:...
This extension has a code action that can be triggered when creating a comment that starts with key words like "TODO": Once it is created, you can hover over the...
## Plan to Fix Comment Auto-Collapse Issue The issue is that when `commentExpandState` is set to `collapseAll`, even newly created comments immediately collapse, which is annoying for users who want...
## Plan: Add Periodic Notification Refresh - [x] Add new setting key constant for notification refresh interval - [x] Add configuration in package.json with default of 10 minutes (600 seconds)...
- [x] Add `githubPullRequests.createFromTemplate` setting to package.json with values: `none`, `first`, `prompt` - [x] Add localization strings for the new setting in package.nls.json - [x] Add the setting constant to...
## Fix Images Not Rendering When Summarizing Issues/Notifications ### Plan: - [x] Analyze the issue - Images in markdown format (``) are not being rendered in the notification/issue summary output...
- [x] Understand the current workspace context implementation - [x] Modify PullRequestContextProvider to include current user login in workspace context - [x] Ensure the current user is obtained for each...
## Summary Added "Open" button to issue/PR and notification thread summaries in panel-chat and quick-chat. ## Changes Made - [x] Add "Open" button to notification summary tool (summarizeNotificationsTool.ts) - [x]...
"Show Changes Since Last Review" was treating pending (not-yet-submitted) reviews as the reference point, causing the diff to reset when new commits arrived during an active review. ## Changes **GraphQL...
I want move cursor in PR text area with ctrl+p(cursorUp) and ctrl+f(cursorRight). PR text area context is not `textInputForcus`. I don't know why it is working ctrl+a, ctrl+e, ctrl+b. ##...