Pull Request feedback: updated documentation and naming, read from cache if available instead of creating new tasks

This commit is contained in:
helen3141
2019-10-11 15:18:31 -07:00
parent 3577fd0fab
commit cecda63be5
6 changed files with 44 additions and 34 deletions

View File

@@ -90,8 +90,8 @@
"title": "%command.runSelectedScript%"
},
{
"command": "npm.runScriptsFromFolder",
"title": "%command.runScriptsFromFolder%"
"command": "npm.runScriptFromFolder",
"title": "%command.runScriptFromFolder%"
}
],
"menus": {
@@ -180,7 +180,7 @@
"explorer/context": [
{
"when": "config.npm.enableRunFromFolderContextMenu && explorerViewletVisible && explorerResourceIsFolder",
"command": "npm.runScriptsFromFolder",
"command": "npm.runScriptFromFolder",
"group": "2_workspace"
}
]
@@ -235,7 +235,7 @@
},
"npm.enableRunFromFolderContextMenu": {
"type": "boolean",
"default": true,
"default": false,
"scope": "resource",
"description": "%config.npm.enableRunFromFolderContextMenu%"
},