File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -274,6 +274,8 @@ _{prefix}/command/{command}_
274
274
275
275
- _ graph_ - Runs the ` GitLens: Show Graph ` command.
276
276
277
+ - _ home_ - Runs the ` GitLens: Show Home View ` command.
278
+
277
279
- _ inspect_ - Runs the ` GitLens: Inspect Commit Details ` command.
278
280
279
281
- _ launchpad_ - Runs the ` GitLens: Show Launchpad ` command.
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ export enum DeepLinkType {
23
23
export enum DeepLinkCommandType {
24
24
CloudPatches = 'cloud-patches' ,
25
25
Graph = 'graph' ,
26
+ Home = 'home' ,
26
27
Inspect = 'inspect' ,
27
28
Launchpad = 'launchpad' ,
28
29
Walkthrough = 'walkthrough' ,
@@ -36,6 +37,7 @@ export function isDeepLinkCommandType(type: string): type is DeepLinkCommandType
36
37
export const DeepLinkCommandTypeToCommand = new Map < DeepLinkCommandType , Commands > ( [
37
38
[ DeepLinkCommandType . CloudPatches , GlCommand . ShowDraftsView ] ,
38
39
[ DeepLinkCommandType . Graph , GlCommand . ShowGraph ] ,
40
+ [ DeepLinkCommandType . Home , GlCommand . ShowHomeView ] ,
39
41
[ DeepLinkCommandType . Inspect , GlCommand . ShowCommitDetailsView ] ,
40
42
[ DeepLinkCommandType . Launchpad , GlCommand . ShowLaunchpad ] ,
41
43
[ DeepLinkCommandType . Walkthrough , GlCommand . GetStarted ] ,
You can’t perform that action at this time.
0 commit comments