-
Notifications
You must be signed in to change notification settings - Fork 34.6k
Closed
Labels
bugIssue identified by VS Code Team member as probable bugIssue identified by VS Code Team member as probable bugterminalGeneral terminal issues that don't fall under another labelGeneral terminal issues that don't fall under another labelterminal-linksverifiedVerification succeededVerification succeeded
Milestone
Description
With #21125 (comment) I'm triggering quick access via IQuickInputService.quickAccess.show(string)
. Ideally it would automatically activate the first item before showing the quick access if it's the only item available. Is there a way to way to do this already and if not could this be a new option here?
vscode/src/vs/platform/quickinput/common/quickAccess.ts
Lines 13 to 31 in 01a9cf1
export interface IQuickAccessOptions { | |
/** | |
* Allows to enable quick navigate support in quick input. | |
*/ | |
quickNavigateConfiguration?: IQuickNavigateConfiguration; | |
/** | |
* Allows to configure a different item activation strategy. | |
* By default the first item in the list will get activated. | |
*/ | |
itemActivation?: ItemActivation; | |
/** | |
* Wether to take the input value as is and not restore it | |
* from any existing value if quick access is visible. | |
*/ | |
preserveValue?: boolean; | |
} |
Metadata
Metadata
Assignees
Labels
bugIssue identified by VS Code Team member as probable bugIssue identified by VS Code Team member as probable bugterminalGeneral terminal issues that don't fall under another labelGeneral terminal issues that don't fall under another labelterminal-linksverifiedVerification succeededVerification succeeded