From a00fa85d7766fffa4ea306b82ef925557f01e54a Mon Sep 17 00:00:00 2001 From: Asher Date: Fri, 13 Mar 2020 13:21:46 -0500 Subject: [PATCH] Qualify extensions in help output as VS Code extensions Also add a description for uninstall-extension and force. --- src/node/cli.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/node/cli.ts b/src/node/cli.ts index 66547643..2b03676b 100644 --- a/src/node/cli.ts +++ b/src/node/cli.ts @@ -101,11 +101,11 @@ const options: Options> = { "builtin-extensions-dir": { type: "string", path: true }, "extra-extensions-dir": { type: "string[]", path: true }, "extra-builtin-extensions-dir": { type: "string[]", path: true }, - "list-extensions": { type: "boolean", description: "Listed installed extensions." }, - force: { type: "boolean" }, - "install-extension": { type: "string[]", description: "Install or update an extension by id or vsix." }, - "uninstall-extension": { type: "string[]" }, - "show-versions": { type: "boolean", description: "Show extension versions." }, + "list-extensions": { type: "boolean", description: "List installed VS Code extensions." }, + force: { type: "boolean", description: "Avoid prompts when installing VS Code extensions." }, + "install-extension": { type: "string[]", description: "Install or update a VS Code extension by id or vsix." }, + "uninstall-extension": { type: "string[]", description: "Uninstall a VS Code extension by id." }, + "show-versions": { type: "boolean", description: "Show VS Code extension versions." }, locale: { type: "string" }, log: { type: LogLevel },