Archived
1
0

Merge pull request #2435 from cdr/issue-2328-customize-go-home

cli: add --home flag to customize "Go Home" button
This commit is contained in:
Joe Previte
2020-12-15 09:52:39 -07:00
committed by GitHub
4 changed files with 69 additions and 11 deletions

View File

@ -57,6 +57,7 @@ export interface Args extends VsArgs {
"new-window"?: boolean
link?: OptionalString
home?: string
}
interface Option<T> {
@ -201,6 +202,10 @@ const options: Options<Required<Args>> = {
`,
beta: true,
},
home: {
type: "string",
description: "Set a custom link for the 'Go Home' button in the Application Menu",
},
}
export const optionDescriptions = (): string[] => {