diff --git a/README.md b/README.md index cfe3770..5557375 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,12 @@ # LeetCode +## Forked from https://github.com/LeetCode-OpenSource/vscode-leetcode + +### Changed the settings scope in VS Code + +- Set `leetcode.workspaceFolder` scope to `window` +- Set `leetcode.defaultLanguage` scope to `window` + > Solve LeetCode problems in VS Code
diff --git a/package.json b/package.json index db0d475..cc345d6 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,10 @@ { - "name": "vscode-leetcode", + "name": "vscode-leetcode-x", "displayName": "LeetCode", "description": "Solve LeetCode problems in VS Code", - "version": "0.18.1", + "version": "0.18.5", "author": "Sheng Chen", - "publisher": "LeetCode", + "publisher": "K8sCat", "license": "MIT", "icon": "resources/LeetCode.png", "engines": { @@ -12,9 +12,9 @@ }, "repository": { "type": "git", - "url": "https://github.com/LeetCode-OpenSource/vscode-leetcode" + "url": "https://github.com/k8scat/vscode-leetcode" }, - "homepage": "https://github.com/LeetCode-OpenSource/vscode-leetcode/blob/master/README.md", + "homepage": "https://github.com/k8scat/vscode-leetcode/blob/master/README.md", "categories": [ "Other", "Snippets" @@ -321,7 +321,7 @@ "swift", "typescript" ], - "scope": "application", + "scope": "window", "description": "Default language for solving the problems." }, "leetcode.showDescription": { @@ -395,7 +395,7 @@ }, "leetcode.workspaceFolder": { "type": "string", - "scope": "application", + "scope": "window", "description": "The path of the workspace folder to store the problem files.", "default": "" },