Skip to content

Commit

Permalink
fix(contribution): reorder conext menu items
Browse files Browse the repository at this point in the history
  • Loading branch information
sleistner committed May 29, 2019
1 parent 0b67baa commit 2883402
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,54 +88,54 @@
{
"command": "fileutils.copyFileName",
"category": "File",
"title": "Copy Name of Active File"
"title": "Copy Name"
}
],
"menus": {
"explorer/context": [
{
"command": "fileutils.moveFile",
"group": "edit"
"group": "7_modification"
},
{
"command": "fileutils.duplicateFile",
"group": "edit"
"group": "7_modification"
},
{
"command": "fileutils.newFileAtRoot",
"group": "edit"
"group": "2_workspace"
},
{
"command": "fileutils.newFolderAtRoot",
"group": "edit"
"group": "2_workspace"
},
{
"command": "fileutils.copyFileName",
"group": "edit"
"group": "6_copypath"
}
],
"editor/context": [
{
"command": "fileutils.moveFile",
"group": "File@1"
"group": "1_modification"
},
{
"command": "fileutils.duplicateFile",
"group": "File@2"
"group": "1_modification"
}
],
"editor/title/context": [
{
"command": "fileutils.renameFile",
"group": "File@1"
"group": "7_modification"
},
{
"command": "fileutils.removeFile",
"group": "File@2"
"group": "7_modification"
},
{
"command": "fileutils.copyFileName",
"group": "File@3"
"group": "1_copypath"
}
]
},
Expand Down

0 comments on commit 2883402

Please sign in to comment.