Skip to content

Commit

Permalink
Merge branch 'main' into merogge/update-sounds
Browse files Browse the repository at this point in the history
  • Loading branch information
meganrogge authored Jan 15, 2025
2 parents ef77443 + 36a79b5 commit da6c840
Showing 1 changed file with 32 additions and 22 deletions.
54 changes: 32 additions & 22 deletions extensions/git/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2075,16 +2075,6 @@
"group": "navigation",
"when": "config.git.enabled && !git.missing && gitOpenRepositoryCount != 0 && isInNotebookTextDiffEditor && resourceScheme =~ /^git$|^file$/"
},
{
"command": "git.stage",
"group": "navigation@1",
"when": "config.git.enabled && !git.missing && gitOpenRepositoryCount != 0 && !isInDiffEditor && !isMergeEditor && resourceScheme == file && git.activeResourceHasUnstagedChanges"
},
{
"command": "git.unstage",
"group": "navigation@1",
"when": "config.git.enabled && !git.missing && gitOpenRepositoryCount != 0 && !isInDiffEditor && !isMergeEditor && resourceScheme == file && git.activeResourceHasStagedChanges"
},
{
"command": "git.openChange",
"group": "navigation@2",
Expand All @@ -2101,30 +2091,50 @@
"when": "config.git.enabled && !git.missing && gitOpenRepositoryCount != 0 && editorLangId == git-commit"
},
{
"command": "git.stageSelectedRanges",
"command": "git.stashApplyEditor",
"alt": "git.stashPopEditor",
"group": "navigation@1",
"when": "config.git.enabled && !git.missing && resourceScheme == git-stash"
},
{
"command": "git.stashDropEditor",
"group": "navigation@2",
"when": "config.git.enabled && !git.missing && resourceScheme == git-stash"
},
{
"command": "git.stage",
"group": "2_git@1",
"when": "config.git.enabled && !git.missing && gitOpenRepositoryCount != 0 && !isInDiffEditor && !isMergeEditor && resourceScheme == file && git.activeResourceHasUnstagedChanges"
},
{
"command": "git.unstage",
"group": "2_git@2",
"when": "config.git.enabled && !git.missing && gitOpenRepositoryCount != 0 && !isInDiffEditor && !isMergeEditor && resourceScheme == file && git.activeResourceHasStagedChanges"
},
{
"command": "git.stage",
"group": "2_git@1",
"when": "config.git.enabled && !git.missing && gitOpenRepositoryCount != 0 && isInDiffEditor && isInDiffRightEditor && !isEmbeddedDiffEditor && resourceScheme == file"
},
{
"command": "git.unstageSelectedRanges",
"command": "git.stageSelectedRanges",
"group": "2_git@2",
"when": "config.git.enabled && !git.missing && gitOpenRepositoryCount != 0 && isInDiffEditor && isInDiffRightEditor && !isEmbeddedDiffEditor && resourceScheme == git"
"when": "config.git.enabled && !git.missing && gitOpenRepositoryCount != 0 && isInDiffEditor && isInDiffRightEditor && !isEmbeddedDiffEditor && resourceScheme == file"
},
{
"command": "git.revertSelectedRanges",
"command": "git.unstage",
"group": "2_git@3",
"when": "config.git.enabled && !git.missing && gitOpenRepositoryCount != 0 && isInDiffEditor && isInDiffRightEditor && !isEmbeddedDiffEditor && resourceScheme == file"
"when": "config.git.enabled && !git.missing && gitOpenRepositoryCount != 0 && isInDiffEditor && isInDiffRightEditor && !isEmbeddedDiffEditor && resourceScheme == git"
},
{
"command": "git.stashApplyEditor",
"alt": "git.stashPopEditor",
"group": "navigation@1",
"when": "config.git.enabled && !git.missing && resourceScheme == git-stash"
"command": "git.unstageSelectedRanges",
"group": "2_git@4",
"when": "config.git.enabled && !git.missing && gitOpenRepositoryCount != 0 && isInDiffEditor && isInDiffRightEditor && !isEmbeddedDiffEditor && resourceScheme == git"
},
{
"command": "git.stashDropEditor",
"group": "navigation@2",
"when": "config.git.enabled && !git.missing && resourceScheme == git-stash"
"command": "git.revertSelectedRanges",
"group": "2_git@5",
"when": "config.git.enabled && !git.missing && gitOpenRepositoryCount != 0 && isInDiffEditor && isInDiffRightEditor && !isEmbeddedDiffEditor && resourceScheme == file"
}
],
"editor/context": [
Expand Down

0 comments on commit da6c840

Please sign in to comment.