Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSandeep Somavarapu <sasomava@microsoft.com>2022-06-10 15:52:28 +0300
committerGitHub <noreply@github.com>2022-06-10 15:52:28 +0300
commit85323c12b433106714532c9dca6f0e3fcc04d1ad (patch)
treeb6990cb9758db01c4f935ecd610b51ea47ecc13c /src/vs/workbench/contrib/extensions/common
parent035a5ea30630c09c27ed1ca2788251edffd413ba (diff)
Fix #151729 (#151730)
Diffstat (limited to 'src/vs/workbench/contrib/extensions/common')
-rw-r--r--src/vs/workbench/contrib/extensions/common/extensionQuery.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vs/workbench/contrib/extensions/common/extensionQuery.ts b/src/vs/workbench/contrib/extensions/common/extensionQuery.ts
index 5c65ba705c2..7c37b541e8a 100644
--- a/src/vs/workbench/contrib/extensions/common/extensionQuery.ts
+++ b/src/vs/workbench/contrib/extensions/common/extensionQuery.ts
@@ -13,7 +13,7 @@ export class Query {
}
static suggestions(query: string): string[] {
- const commands = ['installed', 'outdated', 'enabled', 'disabled', 'builtin', 'featured', 'popular', 'recommended', 'workspaceUnsupported', 'sort', 'category', 'tag', 'ext', 'id'] as const;
+ const commands = ['installed', 'outdated', 'enabled', 'disabled', 'builtin', 'featured', 'popular', 'recommended', 'workspaceUnsupported', 'deprecated', 'sort', 'category', 'tag', 'ext', 'id'] as const;
const subcommands = {
'sort': ['installs', 'rating', 'name', 'publishedDate'],
'category': EXTENSION_CATEGORIES.map(c => `"${c.toLowerCase()}"`),