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:
@ -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[] => {
|
||||
|
Reference in New Issue
Block a user