-
Notifications
You must be signed in to change notification settings - Fork 38.2k
Closed
Labels
api-finalizationfeature-requestRequest for new features or functionalityRequest for new features or functionalityinsiders-releasedPatch has been released in VS Code InsidersPatch has been released in VS Code Insiderson-testplanquick-pickQuick-pick widget issuesQuick-pick widget issues
Milestone
Description
Here's the proposal:
declare module 'vscode' {
export enum QuickInputButtonLocation {
/**
* In the title bar.
*/
Title = 1,
/**
* To the right of the input box.
*/
Inline = 2
}
export interface QuickInputButton {
/**
* Where the button should be rendered. The default is {@link QuickInputButtonLocation.Title}.
* @note This property is ignored if the button was added to a QuickPickItem.
*/
location?: QuickInputButtonLocation;
}
}Here's an example of what inline looks like:

Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
api-finalizationfeature-requestRequest for new features or functionalityRequest for new features or functionalityinsiders-releasedPatch has been released in VS Code InsidersPatch has been released in VS Code Insiderson-testplanquick-pickQuick-pick widget issuesQuick-pick widget issues