diff options
-rw-r--r-- | package.json | 12 | ||||
-rw-r--r-- | server/build_package.lua | 24 |
2 files changed, 12 insertions, 24 deletions
diff --git a/package.json b/package.json index 83c7db1a..2609e058 100644 --- a/package.json +++ b/package.json @@ -256,18 +256,6 @@ "title": "severity", "type": "object" }, - "Lua.plugin.enable": { - "default": false, - "markdownDescription": "%config.plugin.enable%", - "scope": "resource", - "type": "boolean" - }, - "Lua.plugin.path": { - "default": ".vscode/lua-plugin/*.lua", - "markdownDescription": "%config.plugin.path%", - "scope": "resource", - "type": "string" - }, "Lua.runtime.path": { "default": [ "?.lua", diff --git a/server/build_package.lua b/server/build_package.lua index b3dc04c1..3187c8a6 100644 --- a/server/build_package.lua +++ b/server/build_package.lua @@ -145,18 +145,18 @@ local package = { default = true, markdownDescription = "%config.completion.callSnippet%" }, - ["Lua.plugin.enable"] = { - scope = "resource", - type = "boolean", - default = false, - markdownDescription = "%config.plugin.enable%" - }, - ["Lua.plugin.path"] = { - scope = "resource", - type = "string", - default = ".vscode/lua-plugin/*.lua", - markdownDescription = "%config.plugin.path%" - }, + --["Lua.plugin.enable"] = { + -- scope = "resource", + -- type = "boolean", + -- default = false, + -- markdownDescription = "%config.plugin.enable%" + --}, + --["Lua.plugin.path"] = { + -- scope = "resource", + -- type = "string", + -- default = ".vscode/lua-plugin/*.lua", + -- markdownDescription = "%config.plugin.path%" + --}, } }, grammars = { |