mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 03:29:00 +01:00
scm viewlet inline actions
This commit is contained in:
@@ -38,22 +38,38 @@
|
||||
{
|
||||
"command": "git.stage",
|
||||
"title": "Stage",
|
||||
"category": "Git"
|
||||
"category": "Git",
|
||||
"icon": {
|
||||
"light": "resources/icons/light/stage.svg",
|
||||
"dark": "resources/icons/dark/stage.svg"
|
||||
}
|
||||
},
|
||||
{
|
||||
"command": "git.stage-all",
|
||||
"title": "Stage All",
|
||||
"category": "Git"
|
||||
"category": "Git",
|
||||
"icon": {
|
||||
"light": "resources/icons/light/stage.svg",
|
||||
"dark": "resources/icons/dark/stage.svg"
|
||||
}
|
||||
},
|
||||
{
|
||||
"command": "git.unstage",
|
||||
"title": "Unstage",
|
||||
"category": "Git"
|
||||
"category": "Git",
|
||||
"icon": {
|
||||
"light": "resources/icons/light/unstage.svg",
|
||||
"dark": "resources/icons/dark/unstage.svg"
|
||||
}
|
||||
},
|
||||
{
|
||||
"command": "git.unstage-all",
|
||||
"title": "Unstage All",
|
||||
"category": "Git"
|
||||
"category": "Git",
|
||||
"icon": {
|
||||
"light": "resources/icons/light/unstage.svg",
|
||||
"dark": "resources/icons/dark/unstage.svg"
|
||||
}
|
||||
}
|
||||
],
|
||||
"menus": {
|
||||
@@ -63,24 +79,48 @@
|
||||
"group": "navigation"
|
||||
}
|
||||
],
|
||||
"scm/git/index/group": [
|
||||
{
|
||||
"command": "git.unstage-all",
|
||||
"group": "navigation"
|
||||
}
|
||||
],
|
||||
"scm/git/index/group/context": [
|
||||
{
|
||||
"command": "git.unstage-all",
|
||||
"group": "navigation"
|
||||
}
|
||||
],
|
||||
"scm/git/index/resource": [
|
||||
{
|
||||
"command": "git.unstage",
|
||||
"group": "navigation"
|
||||
}
|
||||
],
|
||||
"scm/git/index/resource/context": [
|
||||
{
|
||||
"command": "git.unstage",
|
||||
"group": "navigation"
|
||||
}
|
||||
],
|
||||
"scm/git/workingTree/group": [
|
||||
{
|
||||
"command": "git.stage-all",
|
||||
"group": "navigation"
|
||||
}
|
||||
],
|
||||
"scm/git/workingTree/group/context": [
|
||||
{
|
||||
"command": "git.stage-all",
|
||||
"group": "navigation"
|
||||
}
|
||||
],
|
||||
"scm/git/workingTree/resource": [
|
||||
{
|
||||
"command": "git.stage",
|
||||
"group": "navigation"
|
||||
}
|
||||
],
|
||||
"scm/git/workingTree/resource/context": [
|
||||
{
|
||||
"command": "git.stage",
|
||||
|
||||
Reference in New Issue
Block a user