From c9967d1884c392ed1a3e673120b4165629319514 Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Mon, 11 Jul 2016 12:58:45 -0700 Subject: [PATCH] Add -p to --help CLI output --- src/vs/code/node/argv.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vs/code/node/argv.ts b/src/vs/code/node/argv.ts index a72b1835f98..3e0d5e2a263 100644 --- a/src/vs/code/node/argv.ts +++ b/src/vs/code/node/argv.ts @@ -83,6 +83,7 @@ export const optionsHelp: { [name: string]: string; } = { '-g, --goto': localize('goto', "Open the file at path at the line and column (add :line[:column] to path)."), '--locale ': localize('locale', "The locale to use (e.g. en-US or zh-TW)."), '-n, --new-window': localize('newWindow', "Force a new instance of Code."), + '-p, --performance': localize('performance', "Start with the 'Developer: Startup Performance' command enabled."), '-r, --reuse-window': localize('reuseWindow', "Force opening a file or folder in the last active window."), '--user-data-dir ': localize('userDataDir', "Specifies the directory that user data is kept in, useful when running as root."), '--verbose': localize('verbose', "Print verbose output (implies --wait)."),