diff --git a/src/vs/workbench/electron-main/cli.ts b/src/vs/workbench/electron-main/cli.ts index 2e67231b18260309b2cce1a6b260ecc1d1e3d5a0..de338d109b4657b9b400b47eb1dd422861f4ce4c 100644 --- a/src/vs/workbench/electron-main/cli.ts +++ b/src/vs/workbench/electron-main/cli.ts @@ -24,16 +24,16 @@ class ArgParser { help(): string { const executable = 'code' + (os.platform() === 'win32' ? '.exe' : ''); - + const indent = ' '; return `Visual Studio Code v${ packageJson.version } Usage: ${ executable } [arguments] [paths...] Options: - -h, --help Print usage. - --locale Use a specific locale. - -n Force a new instance of Code. - -v, --version Print version.`; +${ indent }-h, --help Print usage. +${ indent }--locale Use a specific locale. +${ indent }-n Force a new instance of Code. +${ indent }-v, --version Print version.`; } }