File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
src/vs/platform/quickinput/browser Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -274,6 +274,8 @@ export abstract class AbstractCommandsQuickAccessProvider extends PickerQuickAcc
274274 if ( commandPick . type === 'separator' ) {
275275 return commandPick ;
276276 }
277+ const tooltip = commandPick . tooltip
278+ ?? commandPick . commandDescription ?. value ;
277279
278280 const keybinding = this . keybindingService . lookupKeybinding ( commandPick . commandId ) ;
279281 const ariaLabel = keybinding ?
@@ -292,6 +294,7 @@ export abstract class AbstractCommandsQuickAccessProvider extends PickerQuickAcc
292294
293295 return {
294296 ...commandPick ,
297+ tooltip,
295298 ariaLabel,
296299 detail : this . options . showAlias && commandPick . commandAlias !== commandPick . label ? commandPick . commandAlias : undefined ,
297300 keybinding,
You can’t perform that action at this time.
0 commit comments