-
Notifications
You must be signed in to change notification settings - Fork 38.2k
Description
In Core, we now have the ability to give commands optional descriptions using the description property in the metadata property of the action. These descriptions will be used as metadata in the Command Palette to help the user find the command they are looking for. It's not displayed to the user (at this time...) but instead is used to match the user's search. Items that match, are displayed in a "similar commands" section of the command palette.
Take this for example:
My query is "change to French"... why does this match in similar commands? Because the description is so:
| description: localize2('configureLocaleDescription', "Changes the locale of VS Code based on installed language packs. Common languages include French, Chinese, Spanish, Japanese, German, Korean, and more.") |
It matches the "change" and also the "French". This is powered by either TF-IDF which is available for all, or if the user uses Copilot, an even smarter version that handles things like typos and other languages better.
Ask
Please add thoughtful descriptions to your commands. Keep in mind, this is your opportunity to cast a wide net for what words should match. After you do this, I can evaluate (to some degree) how much these descriptions helped... I'm not going to tell you how I'm doing so so you're not biased in what you put in the descriptions.
Also, you are allowed to say "I don't think this really needs one" and skip the command.
I know this is a lot of work, but if we slowly chip at it, we'll see some good returns on investment.
NOTE: I used some automation to get these assignments. They may be wrong and if so, I'm sorry! Please give the item to the right person if something is wrong 🙏
@hediet
- https://github.com/microsoft/vscode/tree/main/src/vs/editor/browser/widget/diffEditor/commands.ts#L88-L88
- https://github.com/microsoft/vscode/tree/main/src/vs/editor/browser/widget/diffEditor/commands.ts#L136-L136
- https://github.com/microsoft/vscode/tree/main/src/vs/editor/browser/widget/diffEditor/commands.ts#L156-L156
- https://github.com/microsoft/vscode/tree/main/src/vs/editor/browser/widget/diffEditor/commands.ts#L203-L203
- https://github.com/microsoft/vscode/tree/main/src/vs/editor/browser/widget/diffEditor/commands.ts#L226-L226
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/mergeEditor/browser/commands/commands.ts#L361-L361
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/mergeEditor/browser/commands/commands.ts#L387-L387
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/mergeEditor/browser/commands/commands.ts#L404-L404
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/mergeEditor/browser/commands/commands.ts#L420-L420
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/mergeEditor/browser/commands/commands.ts#L437-L437
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/mergeEditor/browser/commands/commands.ts#L457-L457
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/mergeEditor/browser/commands/commands.ts#L499-L499
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/mergeEditor/browser/commands/commands.ts#L516-L516
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/mergeEditor/browser/commands/commands.ts#L534-L534
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/mergeEditor/browser/commands/commands.ts#L553-L553
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/mergeEditor/browser/commands/commands.ts#L571-L571
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/mergeEditor/browser/commands/devCommands.ts#L32-L32
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/mergeEditor/browser/commands/devCommands.ts#L78-L78
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/mergeEditor/browser/commands/devCommands.ts#L141-L141
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/mergeEditor/electron-sandbox/devCommands.ts#L134-L134
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/multiDiffEditor/browser/actions.ts#L70-L70
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/multiDiffEditor/browser/actions.ts#L98-L98
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/mergeEditor/electron-sandbox/devCommands.ts#L33-L33
@meganrogge
- https://github.com/microsoft/vscode/tree/main/src/vs/editor/contrib/toggleTabFocusMode/browser/toggleTabFocusMode.ts#L26-L26
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/accessibilitySignals/browser/commands.ts#L23-L23
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/accessibilitySignals/browser/commands.ts#L91-L91
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/codeEditor/browser/accessibility/accessibility.ts#L23-L23
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/terminalContrib/chat/browser/terminalChatActions.ts#L82-L82
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/terminalContrib/chat/browser/terminalChatActions.ts#L106-L106
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/terminalContrib/chat/browser/terminalChatActions.ts#L132-L132
@jrieken
- https://github.com/microsoft/vscode/tree/main/src/vs/platform/actions/common/menuResetAction.ts#L18-L18
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/api/browser/mainThreadFileSystemEventService.ts#L335-L335
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/breadcrumbsControl.ts#L659-L659
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/breadcrumbsControl.ts#L678-L678
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/callHierarchy/browser/callHierarchy.contribution.ts#L201-L201
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/inlayHints/browser/inlayHintsAccessibilty.ts#L178-L178
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/inlayHints/browser/inlayHintsAccessibilty.ts#L195-L195
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/inlineChat/browser/inlineChatActions.ts#L60-L60
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/inlineChat/browser/inlineChatActions.ts#L271-L271
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/inlineChat/browser/inlineChatActions.ts#L462-L462
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/inlineChat/browser/inlineChatActions.ts#L562-L562
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/inlineChat/browser/inlineChatActions.ts#L581-L581
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/inlineChat/browser/inlineChatActions.ts#L600-L600
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/languageStatus/browser/languageStatus.contribution.ts#L427-L427
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/notebook/browser/contrib/format/formatting.ts#L49-L49
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/performance/browser/performance.contribution.ts#L50-L50
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/performance/browser/performance.contribution.ts#L69-L69
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/performance/browser/performance.contribution.ts#L93-L93
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/performance/browser/performance.contribution.ts#L117-L117
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/snippets/browser/commands/fileTemplateSnippets.ts#L26-L26
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/snippets/browser/commands/insertSnippet.ts#L52-L52
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/snippets/browser/commands/surroundWithSnippet.ts#L43-L43
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/services/extensionManagement/browser/extensionBisect.ts#L223-L223
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/services/extensionManagement/browser/extensionBisect.ts#L262-L262
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/services/extensionManagement/browser/extensionBisect.ts#L358-L358
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/typeHierarchy/browser/typeHierarchy.contribution.ts#L193-L193
@bpasero
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/developerActions.ts#L50-L50
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/developerActions.ts#L116-L116
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/developerActions.ts#L400-L400
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/developerActions.ts#L421-L421
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/developerActions.ts#L461-L461
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/developerActions.ts#L571-L571
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/developerActions.ts#L594-L594
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/developerActions.ts#L614-L614
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/helpActions.ts#L31-L31
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/helpActions.ts#L69-L69
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/helpActions.ts#L101-L101
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/helpActions.ts#L133-L133
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/helpActions.ts#L163-L163
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/helpActions.ts#L188-L188
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/helpActions.ts#L220-L220
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/helpActions.ts#L252-L252
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/helpActions.ts#L290-L290
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/layoutActions.ts#L64-L64
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/layoutActions.ts#L88-L88
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/layoutActions.ts#L163-L163
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/layoutActions.ts#L290-L290
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/layoutActions.ts#L422-L422
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/layoutActions.ts#L707-L707
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/layoutActions.ts#L753-L753
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/layoutActions.ts#L792-L792
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/layoutActions.ts#L810-L810
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/layoutActions.ts#L953-L953
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/layoutActions.ts#L1108-L1108
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/layoutActions.ts#L1181-L1181
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/layoutActions.ts#L1197-L1197
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/layoutActions.ts#L1213-L1213
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/layoutActions.ts#L1229-L1229
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/layoutActions.ts#L1244-L1244
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/layoutActions.ts#L1260-L1260
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/navigationActions.ts#L199-L199
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/navigationActions.ts#L211-L211
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/navigationActions.ts#L223-L223
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/navigationActions.ts#L235-L235
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/navigationActions.ts#L323-L323
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/navigationActions.ts#L339-L339
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/windowActions.ts#L243-L243
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/windowActions.ts#L288-L288
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/windowActions.ts#L322-L322
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/windowActions.ts#L348-L348
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/windowActions.ts#L374-L374
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/workspaceActions.ts#L37-L37
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/workspaceActions.ts#L62-L62
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/workspaceActions.ts#L98-L98
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/workspaceActions.ts#L124-L124
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/workspaceActions.ts#L149-L149
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/workspaceActions.ts#L170-L170
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/workspaceActions.ts#L196-L196
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/workspaceActions.ts#L221-L221
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/workspaceActions.ts#L242-L242
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/workspaceActions.ts#L267-L267
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/workspaceActions.ts#L300-L300
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L79-L79
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L95-L95
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L117-L117
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L133-L133
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L151-L151
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L169-L169
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L185-L185
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L220-L220
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L238-L238
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L257-L257
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L292-L292
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L308-L308
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L320-L320
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L332-L332
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L344-L344
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L360-L360
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L376-L376
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L392-L392
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L489-L489
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L528-L528
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L726-L726
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L747-L747
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L775-L775
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L800-L800
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L897-L897
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L913-L913
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L929-L929
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L945-L945
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L971-L971
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L983-L983
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L995-L995
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1007-L1007
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1019-L1019
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1038-L1038
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1060-L1060
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1078-L1078
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1096-L1096
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1121-L1121
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1183-L1183
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1231-L1231
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1279-L1279
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1306-L1306
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1333-L1333
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1352-L1352
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1386-L1386
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1421-L1421
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1450-L1450
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1467-L1467
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1484-L1484
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1501-L1501
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1518-L1518
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1539-L1539
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1556-L1556
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1573-L1573
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1590-L1590
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1609-L1609
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1633-L1633
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1671-L1671
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1691-L1691
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1718-L1718
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1759-L1759
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1771-L1771
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1783-L1783
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1803-L1803
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1825-L1825
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1853-L1853
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1871-L1871
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1889-L1889
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1908-L1908
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1927-L1927
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1965-L1965
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L1984-L1984
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L2003-L2003
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L2015-L2015
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L2034-L2034
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L2046-L2046
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L2058-L2058
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L2070-L2070
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L2082-L2082
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L2101-L2101
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L2120-L2120
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L2132-L2132
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L2144-L2144
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L2156-L2156
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L2171-L2171
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L2183-L2183
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L2195-L2195
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L2207-L2207
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L2221-L2221
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L2235-L2235
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L2249-L2249
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L2263-L2263
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L2277-L2277
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L2291-L2291
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L2305-L2305
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L2319-L2319
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L2367-L2367
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L2379-L2379
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L2391-L2391
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L2403-L2403
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L2415-L2415
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L2461-L2461
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L2510-L2510
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L2573-L2573
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L2628-L2628
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorActions.ts#L2650-L2650
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorCommands.ts#L1007-L1007
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorCommands.ts#L1053-L1053
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorCommands.ts#L1073-L1073
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorCommands.ts#L1095-L1095
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorCommands.ts#L1123-L1123
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorCommands.ts#L1146-L1146
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorCommands.ts#L1169-L1169
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorCommands.ts#L1231-L1231
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorCommands.ts#L1246-L1246
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorCommands.ts#L1261-L1261
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorStatus.ts#L1076-L1076
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorStatus.ts#L1331-L1331
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/editor/editorStatus.ts#L1380-L1380
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/sidebar/sidebarActions.ts#L23-L23
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/statusbar/statusbarActions.ts#L118-L118
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/titlebar/titlebarPart.ts#L120-L120
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/chat/electron-sandbox/actions/voiceChatActions.ts#L505-L505
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/chat/electron-sandbox/actions/voiceChatActions.ts#L572-L572
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/chat/electron-sandbox/actions/voiceChatActions.ts#L587-L587
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/chat/electron-sandbox/actions/voiceChatActions.ts#L601-L601
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/chat/electron-sandbox/actions/voiceChatActions.ts#L778-L778
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/codeEditor/browser/dictation/editorDictation.ts#L43-L43
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/codeEditor/browser/dictation/editorDictation.ts#L85-L85
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/codeEditor/browser/inspectKeybindings.ts#L41-L41
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/codeEditor/browser/toggleMinimap.ts#L24-L24
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/codeEditor/browser/toggleMultiCursorModifier.ts#L25-L25
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/codeEditor/browser/toggleRenderControlCharacter.ts#L24-L24
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/codeEditor/browser/toggleRenderWhitespace.ts#L24-L24
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/codeEditor/electron-sandbox/startDebugTextMate.ts#L33-L33
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/extensions/electron-sandbox/extensionsActions.ts#L23-L23
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/files/browser/fileActions.ts#L1300-L1300
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/localHistory/browser/localHistoryCommands.ts#L317-L317
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/localHistory/browser/localHistoryCommands.ts#L500-L500
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/localHistory/browser/localHistoryCommands.ts#L534-L534
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/remote/browser/remoteIndicator.ts#L182-L182
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/remote/browser/remoteIndicator.ts#L200-L200
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/url/browser/url.contribution.ts#L30-L30
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/electron-sandbox/actions/developerActions.ts#L27-L27
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/electron-sandbox/actions/developerActions.ts#L56-L56
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/electron-sandbox/actions/developerActions.ts#L78-L78
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/electron-sandbox/actions/installActions.ts#L25-L25
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/electron-sandbox/actions/installActions.ts#L55-L55
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/electron-sandbox/actions/windowActions.ts#L42-L42
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/electron-sandbox/actions/windowActions.ts#L126-L126
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/electron-sandbox/actions/windowActions.ts#L155-L155
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/electron-sandbox/actions/windowActions.ts#L188-L188
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/electron-sandbox/actions/windowActions.ts#L315-L315
@sbatten
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/layoutActions.ts#L325-L325
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/layoutActions.ts#L1370-L1370
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/auxiliarybar/auxiliaryBarActions.ts#L41-L41
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/auxiliarybar/auxiliaryBarActions.ts#L79-L79
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/panel/panelActions.ts#L43-L43
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/panel/panelActions.ts#L78-L78
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/panel/panelActions.ts#L169-L169
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/panel/panelActions.ts#L204-L204
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/panel/panelActions.ts#L230-L230
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/panel/panelActions.ts#L281-L281
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/panel/panelActions.ts#L440-L440
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/panel/panelActions.ts#L471-L471
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/titlebar/menubarControl.ts#L447-L447
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/welcomeViews/common/newFile.contribution.ts#L31-L31
@benibenj
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/layoutActions.ts#L455-L455
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/layoutActions.ts#L578-L578
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/layoutActions.ts#L604-L604
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/layoutActions.ts#L627-L627
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/layoutActions.ts#L650-L650
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/layoutActions.ts#L680-L680
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/listCommands.ts#L919-L919
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/titlebar/titlebarActions.ts#L162-L162
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/titlebar/titlebarActions.ts#L179-L179
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/titlebar/titlebarActions.ts#L195-L195
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/scrollLocking/browser/scrollLocking.ts#L194-L194
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/files/browser/views/openEditorsView.ts#L822-L822
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/files/browser/views/openEditorsView.ts#L862-L862
@sandy081
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/activitybar/activitybarPart.ts#L541-L541
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/activitybar/activitybarPart.ts#L554-L554
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/activitybar/activitybarPart.ts#L567-L567
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/extensions/browser/extensions.contribution.ts#L564-L564
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/extensions/browser/extensions.contribution.ts#L729-L729
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/extensions/browser/extensions.contribution.ts#L738-L738
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/extensions/browser/extensions.contribution.ts#L1062-L1062
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/extensions/browser/extensions.contribution.ts#L1171-L1171
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/extensions/browser/extensions.contribution.ts#L1193-L1193
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/extensions/browser/extensionsViewlet.ts#L185-L185
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/extensions/browser/extensionsViewlet.ts#L207-L207
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/extensions/electron-sandbox/extensionsActions.ts#L55-L55
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/logs/browser/logs.contribution.ts#L33-L33
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/logs/common/logs.contribution.ts#L35-L35
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/logs/common/logs.contribution.ts#L203-L203
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/logs/electron-sandbox/logs.contribution.ts#L17-L17
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/logs/electron-sandbox/logs.contribution.ts#L31-L31
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/markers/browser/markers.contribution.ts#L315-L315
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/output/browser/output.contribution.ts#L174-L174
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/preferences/browser/preferences.contribution.ts#L1147-L1147
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/snippets/browser/commands/configureSnippets.ts#L232-L232
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/userDataProfile/browser/userDataProfile.ts#L153-L153
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/userDataProfile/browser/userDataProfile.ts#L195-L195
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/userDataProfile/browser/userDataProfile.ts#L388-L388
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/userDataProfile/browser/userDataProfile.ts#L408-L408
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/userDataProfile/browser/userDataProfile.ts#L433-L433
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/userDataProfile/browser/userDataProfileActions.ts#L27-L27
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/userDataProfile/browser/userDataProfileActions.ts#L46-L46
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/userDataProfile/browser/userDataProfileActions.ts#L153-L153
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/userDataProfile/browser/userDataProfileActions.ts#L169-L169
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/userDataSync/browser/userDataSync.ts#L729-L729
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/userDataSync/browser/userDataSync.ts#L850-L850
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/electron-sandbox/actions/developerActions.ts#L94-L94
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/services/extensionManagement/browser/webExtensionsScannerService.ts#L995-L995
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/services/issue/browser/issueTroubleshoot.ts#L353-L353
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/services/issue/browser/issueTroubleshoot.ts#L368-L368
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/services/preferences/test/browser/keybindingsEditorModel.test.ts#L711-L711
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/services/userDataSync/common/userDataSync.ts#L99-L99
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/services/views/browser/viewsService.ts#L388-L388
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/services/views/browser/viewsService.ts#L459-L459
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/services/views/common/viewContainerModel.ts#L31-L31
@lszomoru
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/parts/banner/bannerPart.ts#L295-L295
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/workspace/browser/workspace.contribution.ts#L694-L694
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/workspace/browser/workspace.contribution.ts#L712-L712
@TylerLeonhardt
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/authentication/browser/actions/manageTrustedExtensionsForAccountAction.ts#L24-L24
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/chat/browser/actions/chatQuickInputActions.ts#L174-L174
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/issue/electron-sandbox/issue.contribution.ts#L81-L81
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/issue/electron-sandbox/issue.contribution.ts#L105-L105
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/issue/electron-sandbox/issue.contribution.ts#L134-L134
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/quickaccess/browser/commandsQuickAccess.ts#L274-L274
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/languageDetection/browser/languageDetection.contribution.ts#L126-L126
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/codeEditor/browser/quickaccess/gotoSymbolQuickAccess.ts#L258-L258
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/quickAccessActions.ts#L140-L140
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/browser/actions/quickAccessActions.ts#L194-L194
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/codeEditor/browser/quickaccess/gotoLineQuickAccess.ts#L76-L76
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/quickaccess/browser/commandsQuickAccess.ts#L289-L289
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/quickaccess/browser/viewQuickAccess.ts#L237-L237
@roblourens
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/chat/browser/actions/chatActions.ts#L183-L183
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/chat/browser/actions/chatActions.ts#L199-L199
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/chat/browser/actions/chatActions.ts#L281-L281
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/chat/browser/actions/chatActions.ts#L306-L306
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/chat/browser/actions/chatClearActions.ts#L57-L57
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/chat/browser/actions/chatCodeblockActions.ts#L183-L183
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/chat/browser/actions/chatCodeblockActions.ts#L350-L350
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/chat/browser/actions/chatCodeblockActions.ts#L405-L405
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/chat/browser/actions/chatCodeblockActions.ts#L524-L524
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/chat/browser/actions/chatCodeblockActions.ts#L546-L546
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/chat/browser/actions/chatImportExport.ts#L35-L35
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/chat/browser/actions/chatImportExport.ts#L79-L79
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/debug/browser/debugCommands.ts#L953-L953
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/notebook/browser/contrib/cellCommands/cellCommands.ts#L493-L493
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/notebook/browser/contrib/cellCommands/cellCommands.ts#L507-L507
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/notebook/browser/contrib/cellCommands/cellCommands.ts#L521-L521
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/notebook/browser/contrib/cellCommands/cellCommands.ts#L535-L535
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/preferences/browser/preferences.contribution.ts#L227-L227
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/preferences/browser/preferences.contribution.ts#L277-L277
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/preferences/browser/preferences.contribution.ts#L291-L291
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/preferences/browser/preferences.contribution.ts#L305-L305
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/preferences/browser/preferences.contribution.ts#L545-L545
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/preferences/browser/preferences.contribution.ts#L564-L564
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/preferences/browser/preferences.contribution.ts#L642-L642
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/preferences/browser/preferences.contribution.ts#L700-L700
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/preferences/browser/preferences.contribution.ts#L724-L724
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/chat/browser/actions/chatMoveActions.ts#L83-L83
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/chat/browser/actions/chatMoveActions.ts#L116-L116
@joyceerhl
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/chat/browser/actions/chatFileTreeActions.ts#L27-L27
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/chat/browser/actions/chatFileTreeActions.ts#L48-L48
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/editSessions/browser/editSessions.contribution.ts#L80-L80
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/editSessions/browser/editSessions.contribution.ts#L322-L322
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/editSessions/browser/editSessions.contribution.ts#L431-L431
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/editSessions/browser/editSessions.contribution.ts#L445-L445
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/editSessions/browser/editSessions.contribution.ts#L467-L467
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/editSessions/browser/editSessions.contribution.ts#L906-L906
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/share/browser/share.contribution.ts#L85-L85
@aiday-mar
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/chat/browser/actions/chatMoveActions.ts#L100-L100
- Commands in hover feature area, sticky scroll feature area, auto-indentation feature area.
@alexdima
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/codeEditor/browser/inspectKeybindings.ts#L20-L20
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/codeEditor/browser/toggleColumnSelection.ts#L28-L28
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/extensions/browser/abstractRuntimeExtensionsEditor.ts#L535-L535
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/keybindings/browser/keybindings.contribution.ts#L20-L20
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/remote/common/remote.contribution.ts#L158-L158
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/remote/common/remote.contribution.ts#L173-L173
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/services/extensions/common/extensionHostManager.ts#L630-L630
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/services/extensions/electron-sandbox/nativeExtensionService.ts#L729-L729
@connor4312
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/debug/browser/breakpointsView.ts#L1558-L1558
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/debug/browser/debugEditorActions.ts#L278-L278
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/testing/browser/testExplorerActions.ts#L348-L348
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/testing/browser/testingOutputPeek.ts#L2492-L2492
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/testing/browser/testingOutputPeek.ts#L2525-L2525
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/testing/browser/testingOutputPeek.ts#L2576-L2576
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/debug/browser/breakpointsView.ts#L1408-L1408
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/debug/browser/breakpointsView.ts#L1595-L1595
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/debug/browser/breakpointsView.ts#L1654-L1654
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/debug/browser/breakpointsView.ts#L1692-L1692
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/debug/browser/breakpointsView.ts#L1722-L1722
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/debug/browser/breakpointsView.ts#L1749-L1749
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/debug/browser/debugViewlet.ts#L199-L199
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/debug/browser/repl.ts#L975-L975
@lramos15
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/files/browser/fileActions.ts#L490-L490
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/files/browser/fileActions.ts#L529-L529
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/files/browser/fileActions.ts#L621-L621
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/files/browser/fileActions.ts#L641-L641
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/files/browser/fileActions.ts#L666-L666
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/files/browser/fileActions.ts#L775-L775
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/files/browser/fileActions.ts#L806-L806
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/welcomeWalkthrough/browser/editor/editorWalkThrough.ts#L38-L38
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/files/browser/views/explorerView.ts#L1027-L1027
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/files/browser/views/explorerView.ts#L1051-L1051
@bhavyaus
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.contribution.ts#L41-L41
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.contribution.ts#L154-L154 -
not shown in command palette - https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.contribution.ts#L218-L218 -
not shown in command palette - https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.ts#L676-L676
@rebornix
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/notebook/browser/contrib/clipboard/notebookClipboard.ts#L577-L577
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/notebook/browser/contrib/gettingStarted/notebookGettingStarted.ts#L84-L84
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/notebook/browser/contrib/troubleshoot/layout.ts#L126-L126
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/notebook/browser/contrib/troubleshoot/layout.ts#L149-L149
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/notebook/browser/contrib/troubleshoot/layout.ts#L174-L174
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/notebook/browser/controller/editActions.ts#L524-L524
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/notebook/browser/controller/editActions.ts#L571-L571
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/notebook/browser/controller/foldingController.ts#L202-L202
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/notebook/browser/controller/foldingController.ts#L272-L272
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/notebook/browser/controller/layoutActions.ts#L29-L29
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/notebook/browser/controller/layoutActions.ts#L65-L65
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/notebook/browser/controller/layoutActions.ts#L128-L128
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/notebook/browser/controller/layoutActions.ts#L185-L185
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/notebook/browser/services/notebookKernelHistoryServiceImpl.ts#L142-L142
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/notebook/browser/view/cellParts/cellEditorOptions.ts#L204-L204
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/notebook/browser/viewParts/notebookKernelView.ts#L48-L48
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/preferences/browser/keyboardLayoutPicker.ts#L107-L107
@aeschli
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/remote/browser/remoteIndicator.ts#L225-L225
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/themes/browser/themes.contribution.ts#L388-L388
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/themes/browser/themes.contribution.ts#L430-L430
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/themes/browser/themes.contribution.ts#L465-L465
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/themes/browser/themes.contribution.ts#L582-L582
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/themes/browser/themes.contribution.ts#L636-L636
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/themes/browser/themes.contribution.ts#L681-L681
@andreamah
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/search/browser/searchActionsFind.ts#L199-L199
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/search/browser/searchActionsNav.ts#L344-L344
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/search/browser/searchActionsNav.ts#L363-L363
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/search/browser/searchActionsNav.ts#L383-L383
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/search/browser/searchActionsNav.ts#L403-L403
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/search/browser/searchActionsSymbol.ts#L28-L28
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/search/browser/searchActionsTextQuickAccess.ts#L25-L25
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/search/browser/searchActionsTopBar.ts#L31-L31
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/search/browser/searchActionsTopBar.ts#L48-L48
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/search/browser/searchActionsTopBar.ts#L76-L76
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/search/browser/searchActionsTopBar.ts#L97-L97
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/search/browser/searchActionsTopBar.ts#L119-L119
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/search/browser/searchActionsTopBar.ts#L141-L141
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/search/browser/searchActionsTopBar.ts#L164-L164
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/search/browser/searchActionsTopBar.ts#L189-L189
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/searchEditor/browser/searchEditor.contribution.ts#L244-L244
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/searchEditor/browser/searchEditor.contribution.ts#L262-L262
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/searchEditor/browser/searchEditor.contribution.ts#L277-L277
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/searchEditor/browser/searchEditor.contribution.ts#L292-L292
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/searchEditor/browser/searchEditor.contribution.ts#L307-L307
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/searchEditor/browser/searchEditor.contribution.ts#L366-L366
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/searchEditor/browser/searchEditor.contribution.ts#L389-L389
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/searchEditor/browser/searchEditor.contribution.ts#L408-L408
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/searchEditor/browser/searchEditor.contribution.ts#L427-L427
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/searchEditor/browser/searchEditor.contribution.ts#L446-L446
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/searchEditor/browser/searchEditor.contribution.ts#L465-L465
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/searchEditor/browser/searchEditor.contribution.ts#L484-L484
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/searchEditor/browser/searchEditor.contribution.ts#L504-L504
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/searchEditor/browser/searchEditor.contribution.ts#L521-L521
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/searchEditor/browser/searchEditor.contribution.ts#L538-L538
@Tyriar
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/terminal/browser/terminalActions.ts#L763-L763
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/terminal/browser/terminalActions.ts#L1575-L1575
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/terminal/browser/terminalActions.ts#L1661-L1661
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/terminal/browser/terminalActions.ts#L1672-L1672
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/terminal/browser/terminalActions.ts#L1765-L1765
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/terminalContrib/chat/browser/terminalChatActions.ts#L28-L28
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/terminalContrib/chat/browser/terminalChatActions.ts#L60-L60
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/terminalContrib/links/browser/terminal.links.contribution.ts#L110-L110
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/terminalContrib/links/browser/terminal.links.contribution.ts#L131-L131
- https://github.com/microsoft/vscode/tree/main/src/vs/workbench/contrib/terminalContrib/links/browser/terminal.links.contribution.ts#L139-L139