-
Notifications
You must be signed in to change notification settings - Fork 37k
Show command descriptions as tooltips in Command Palette #284609
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
|
@Riya-chandra please read the following Contributor License Agreement(CLA). If you agree with the CLA, please reply with the following information.
Contributor License AgreementContribution License AgreementThis Contribution License Agreement (“Agreement”) is agreed to by the party signing below (“You”),
|
|
There is a lot of code style changes in this PR, some of which go against our style guides. Can you please revert all the styling changes and only include the actual functional change |
What this PR does
This PR surfaces existing command descriptions as native tooltips in the
Command Palette.
VS Code already stores command metadata (including descriptions) in
CommandsRegistry, but this information was not visible in the UI.This change exposes that existing data via a simple hover tooltip,
making it easier to explore and understand less familiar commands.
Why this is useful
Implementation details
CommandsRegistry.getCommandmetadata.descriptionwhen available (with localized string support)titleattribute)Notes
Local build was not run due to environment constraints. This change is
isolated to the Quick Input UI layer.
Fixes #260868
@TylerLeonhardt...Please look into this