add kb to navigate to next/previous question #296633
Merged
meganrogge merged 4 commits intomainfrom Feb 20, 2026
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This pull request adds keyboard navigation shortcuts for the chat question carousel feature, implementing Alt+N (next question) and Alt+P (previous question) keybindings as requested in issue #296613.
Changes:
- Added a new context key
inChatQuestionCarouselto track when the question carousel has focus - Implemented
navigateToPreviousQuestion()andnavigateToNextQuestion()methods throughout the question carousel component stack - Registered keyboard actions with appropriate keybindings and accessibility help text
Reviewed changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| src/vs/workbench/contrib/chat/common/actions/chatContextKeys.ts | Added inChatQuestionCarousel context key to detect when carousel is focused |
| src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatQuestionCarouselPart.ts | Added context key tracking with focus listeners and implemented navigation methods with boundary checks |
| src/vs/workbench/contrib/chat/browser/widget/input/chatInputPart.ts | Added navigation method delegation to the carousel widget |
| src/vs/workbench/contrib/chat/browser/widget/chatWidget.ts | Implemented IChatWidget interface methods for navigation |
| src/vs/workbench/contrib/chat/browser/chat.ts | Added interface method declarations with JSDoc documentation |
| src/vs/workbench/contrib/chat/browser/actions/chatActions.ts | Registered Alt+N and Alt+P keyboard actions with proper context conditions |
| src/vs/workbench/contrib/chat/browser/actions/chatAccessibilityHelp.ts | Added accessibility help text for the new navigation commands |
src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatQuestionCarouselPart.ts
Show resolved
Hide resolved
dmitrivMS
approved these changes
Feb 20, 2026
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.
fix #296613
navigate.mov