Skip to content
Snippets Groups Projects
Commit 7583cd34 authored by 最萌小汐's avatar 最萌小汐
Browse files

3.5.4

parent eca843f9
No related branches found
No related tags found
No related merge requests found
# changelog
## 3.5.4
`2022-9-6`
* `NEW` `type-formatting`: fix wrong indentation of VSCode
* `CHG` `document-symbol`: redesigned to better support for `Sticky Scroll` feature of VSCode
* `FIX` `diagnostics.workspaceDelay` can not prevent first workspace diagnostic
* `FIX` [#1476](https://github.com/sumneko/lua-language-server/issues/1476)
* `FIX` [#1490](https://github.com/sumneko/lua-language-server/issues/1490)
* `FIX` [#1493](https://github.com/sumneko/lua-language-server/issues/1493)
* `FIX` [#1499](https://github.com/sumneko/lua-language-server/issues/1499)
* `FIX` [#1526](https://github.com/sumneko/lua-language-server/issues/1526)
## 3.5.3
`2022-8-13`
* `FIX` [#1409](https://github.com/sumneko/lua-language-server/issues/1409)
......
......@@ -203,6 +203,7 @@
"missing-return",
"missing-return-value",
"need-check-nil",
"need-paren",
"newfield-call",
"newline-call",
"no-unknown",
......@@ -2429,6 +2430,16 @@
],
"type": "string"
},
"string.buffer": {
"default": "default",
"description": "%config.runtime.builtin.string.buffer%",
"enum": [
"default",
"enable",
"disable"
],
"type": "string"
},
"table": {
"default": "default",
"description": "%config.runtime.builtin.table%",
......@@ -2684,6 +2695,30 @@
"scope": "resource",
"type": "boolean"
},
"Lua.typeFormat.config": {
"additionalProperties": false,
"markdownDescription": "%config.typeFormat.config%",
"properties": {
"auto_complete_end": {
"default": "true",
"description": "%config.typeFormat.config.auto_complete_end%",
"type": "string"
},
"auto_complete_table_sep": {
"default": "true",
"description": "%config.typeFormat.config.auto_complete_table_sep%",
"type": "string"
},
"format_line": {
"default": "true",
"description": "%config.typeFormat.config.format_line%",
"type": "string"
}
},
"scope": "resource",
"title": "config",
"type": "object"
},
"Lua.window.progressBar": {
"default": true,
"markdownDescription": "%config.window.progressBar%",
......@@ -2939,5 +2974,5 @@
"sponsor": {
"url": "https://github.com/sumneko/lua-language-server/issues/484"
},
"version": "3.5.3"
"version": "3.5.4"
}
local json = require 'json-beautify'
local VERSION = "3.5.3"
local VERSION = "3.5.4"
local package = require 'package.package'
local fsu = require 'fs-utility'
......
Subproject commit dacf711d57cddbf106937abd64f544a9298f3349
Subproject commit efe82edce8af8160c3a6e0977bee935f7f8655d5
......@@ -253,6 +253,7 @@
"missing-return",
"missing-return-value",
"need-check-nil",
"need-paren",
"newfield-call",
"newline-call",
"no-unknown",
......@@ -2583,6 +2584,16 @@
],
"type": "string"
},
"string.buffer": {
"default": "default",
"description": "%config.runtime.builtin.string.buffer%",
"enum": [
"default",
"enable",
"disable"
],
"type": "string"
},
"table": {
"default": "default",
"description": "%config.runtime.builtin.table%",
......@@ -2888,6 +2899,37 @@
"scope": "resource",
"type": "boolean"
},
"typeFormat": {
"properties": {
"config": {
"$ref": "#/properties/typeFormat.config"
}
}
},
"typeFormat.config": {
"additionalProperties": false,
"markdownDescription": "%config.typeFormat.config%",
"properties": {
"auto_complete_end": {
"default": "true",
"description": "%config.typeFormat.config.auto_complete_end%",
"type": "string"
},
"auto_complete_table_sep": {
"default": "true",
"description": "%config.typeFormat.config.auto_complete_table_sep%",
"type": "string"
},
"format_line": {
"default": "true",
"description": "%config.typeFormat.config.format_line%",
"type": "string"
}
},
"scope": "resource",
"title": "config",
"type": "object"
},
"window": {
"properties": {
"progressBar": {
......
......@@ -253,6 +253,7 @@
"missing-return",
"missing-return-value",
"need-check-nil",
"need-paren",
"newfield-call",
"newline-call",
"no-unknown",
......@@ -2583,6 +2584,16 @@
],
"type": "string"
},
"string.buffer": {
"default": "default",
"description": "%config.runtime.builtin.string.buffer%",
"enum": [
"default",
"enable",
"disable"
],
"type": "string"
},
"table": {
"default": "default",
"description": "%config.runtime.builtin.table%",
......@@ -2888,6 +2899,37 @@
"scope": "resource",
"type": "boolean"
},
"typeFormat": {
"properties": {
"config": {
"$ref": "#/properties/typeFormat.config"
}
}
},
"typeFormat.config": {
"additionalProperties": false,
"markdownDescription": "%config.typeFormat.config%",
"properties": {
"auto_complete_end": {
"default": "true",
"description": "%config.typeFormat.config.auto_complete_end%",
"type": "string"
},
"auto_complete_table_sep": {
"default": "true",
"description": "%config.typeFormat.config.auto_complete_table_sep%",
"type": "string"
},
"format_line": {
"default": "true",
"description": "%config.typeFormat.config.format_line%",
"type": "string"
}
},
"scope": "resource",
"title": "config",
"type": "object"
},
"window": {
"properties": {
"progressBar": {
......
......@@ -253,6 +253,7 @@
"missing-return",
"missing-return-value",
"need-check-nil",
"need-paren",
"newfield-call",
"newline-call",
"no-unknown",
......@@ -2583,6 +2584,16 @@
],
"type": "string"
},
"string.buffer": {
"default": "default",
"description": "%config.runtime.builtin.string.buffer%",
"enum": [
"default",
"enable",
"disable"
],
"type": "string"
},
"table": {
"default": "default",
"description": "%config.runtime.builtin.table%",
......@@ -2888,6 +2899,37 @@
"scope": "resource",
"type": "boolean"
},
"typeFormat": {
"properties": {
"config": {
"$ref": "#/properties/typeFormat.config"
}
}
},
"typeFormat.config": {
"additionalProperties": false,
"markdownDescription": "%config.typeFormat.config%",
"properties": {
"auto_complete_end": {
"default": "true",
"description": "%config.typeFormat.config.auto_complete_end%",
"type": "string"
},
"auto_complete_table_sep": {
"default": "true",
"description": "%config.typeFormat.config.auto_complete_table_sep%",
"type": "string"
},
"format_line": {
"default": "true",
"description": "%config.typeFormat.config.format_line%",
"type": "string"
}
},
"scope": "resource",
"title": "config",
"type": "object"
},
"window": {
"properties": {
"progressBar": {
......
......@@ -253,6 +253,7 @@
"missing-return",
"missing-return-value",
"need-check-nil",
"need-paren",
"newfield-call",
"newline-call",
"no-unknown",
......@@ -2583,6 +2584,16 @@
],
"type": "string"
},
"string.buffer": {
"default": "default",
"description": "%config.runtime.builtin.string.buffer%",
"enum": [
"default",
"enable",
"disable"
],
"type": "string"
},
"table": {
"default": "default",
"description": "%config.runtime.builtin.table%",
......@@ -2888,6 +2899,37 @@
"scope": "resource",
"type": "boolean"
},
"typeFormat": {
"properties": {
"config": {
"$ref": "#/properties/typeFormat.config"
}
}
},
"typeFormat.config": {
"additionalProperties": false,
"markdownDescription": "%config.typeFormat.config%",
"properties": {
"auto_complete_end": {
"default": "true",
"description": "%config.typeFormat.config.auto_complete_end%",
"type": "string"
},
"auto_complete_table_sep": {
"default": "true",
"description": "%config.typeFormat.config.auto_complete_table_sep%",
"type": "string"
},
"format_line": {
"default": "true",
"description": "%config.typeFormat.config.format_line%",
"type": "string"
}
},
"scope": "resource",
"title": "config",
"type": "object"
},
"window": {
"properties": {
"progressBar": {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment