Skip to content

Commit

Permalink
Initial version supporting multiple workspace roots
Browse files Browse the repository at this point in the history
  • Loading branch information
jvdprng committed Sep 10, 2024
1 parent b7bbf3e commit fa182b5
Show file tree
Hide file tree
Showing 10 changed files with 2,057 additions and 882 deletions.
28 changes: 17 additions & 11 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 34 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,24 @@
"title": "weAudit: Edit Git Commit Hash"
},
{
"command": "weAudit.setupRepositories",
"title": "weAudit: Setup Audit and Client Repositories, and the Git Commit Hash",
"icon": "$(settings-gear)"
"command": "weAudit.setupRepositoriesCurrent",
"title": "weAudit: Setup git configurations for this workspace root",
"icon": "$(github)"
},
{
"command": "weAudit.setupRepositoriesAll",
"title": "weAudit: Setup git configurations for all workspace roots",
"icon": "$(github-inverted)"
},
{
"command": "weAudit.nextGitConfig",
"title": "weAudit: Show next workspace root",
"icon": "$(arrow-right)"
},
{
"command": "weAudit.prevGitConfig",
"title": "weAudit: Show previous workspace root",
"icon": "$(arrow-left)"
},
{
"command": "weAudit.resolveFinding",
Expand Down Expand Up @@ -326,7 +341,22 @@
"group": "navigation@2"
},
{
"command": "weAudit.setupRepositories",
"command": "weAudit.setupRepositoriesCurrent",
"when": "view == gitConfig",
"group": "navigation@2"
},
{
"command": "weAudit.setupRepositoriesAll",
"when": "view == gitConfig",
"group": "navigation@3"
},
{
"command": "weAudit.nextGitConfig",
"when": "view == gitConfig",
"group": "navigation@1"
},
{
"command": "weAudit.prevGitConfig",
"when": "view == gitConfig",
"group": "navigation@0"
}
Expand Down
Loading

0 comments on commit fa182b5

Please sign in to comment.