Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

support submit & test action in the editor context menu #40

Merged
merged 1 commit into from
May 25, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
145 changes: 84 additions & 61 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@
],
"main": "./out/src/extension",
"contributes": {
"commands": [{
"commands": [
{
"command": "leetcode.signin",
"title": "Sign in",
"category": "LeetCode"
Expand Down Expand Up @@ -90,89 +91,111 @@
}
],
"viewsContainers": {
"activitybar": [{
"id": "leetcode",
"title": "LeetCode",
"icon": "resources/LeetCode.svg"
}]
"activitybar": [
{
"id": "leetcode",
"title": "LeetCode",
"icon": "resources/LeetCode.svg"
}
]
},
"views": {
"leetcode": [{
"id": "leetCodeExplorer",
"name": "LeetCode"
}]
"leetcode": [
{
"id": "leetCodeExplorer",
"name": "LeetCode"
}
]
},
"menus": {
"view/title": [{
"view/title": [
{
"command": "leetcode.searchProblem",
"when": "view == leetCodeExplorer",
"group": "navigation@1"
"group": "leetcode@1"
},
{
"command": "leetcode.refreshExplorer",
"when": "view == leetCodeExplorer",
"group": "navigation@2"
"group": "leetcode@2"
}
],
"view/item/context": [{
"command": "leetcode.showProblem",
"when": "view == leetCodeExplorer && viewItem == problem",
"group": "leetcode-explorer@1"
}],
"commandPalette": [{
"command": "leetcode.showProblem",
"when": "never"
}],
"explorer/context": [{
"view/item/context": [
{
"command": "leetcode.showProblem",
"when": "view == leetCodeExplorer && viewItem == problem",
"group": "leetcode@1"
}
],
"commandPalette": [
{
"command": "leetcode.showProblem",
"when": "never"
}
],
"explorer/context": [
{
"command": "leetcode.testSolution",
"when": "explorerResourceIsFolder == false",
"group": "file-explorer@1"
"group": "leetcode@1"
},
{
"command": "leetcode.submitSolution",
"when": "explorerResourceIsFolder == false",
"group": "file-explorer@2"
"group": "leetcode@2"
}
],
"editor/context": [
{
"command": "leetcode.testSolution",
"group": "leetcode@1"
},
{
"command": "leetcode.submitSolution",
"group": "leetcode@2"
}
]
},
"configuration": [{
"title": "LeetCode",
"properties": {
"leetcode.showLocked": {
"type": "boolean",
"default": false,
"scope": "window",
"description": "Show locked problems."
},
"leetcode.defaultLanguage": {
"type": "string",
"enum": [
"bash",
"c",
"cpp",
"csharp",
"golang",
"java",
"javascript",
"kotlin",
"mysql",
"python",
"python3",
"ruby",
"scala",
"swift"
],
"scope": "window",
"description": "Default language for solving the problems."
},
"leetcode.showSetDefaultLanguageHint": {
"type": "boolean",
"default": true,
"scope": "window",
"description": "Show a hint to set the default language."
"configuration": [
{
"title": "LeetCode",
"properties": {
"leetcode.showLocked": {
"type": "boolean",
"default": false,
"scope": "window",
"description": "Show locked problems."
},
"leetcode.defaultLanguage": {
"type": "string",
"enum": [
"bash",
"c",
"cpp",
"csharp",
"golang",
"java",
"javascript",
"kotlin",
"mysql",
"python",
"python3",
"ruby",
"scala",
"swift"
],
"scope": "window",
"description": "Default language for solving the problems."
},
"leetcode.showSetDefaultLanguageHint": {
"type": "boolean",
"default": true,
"scope": "window",
"description": "Show a hint to set the default language."
}
}
}
}]
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
Expand Down