File tree Expand file tree Collapse file tree 7 files changed +43
-39
lines changed
Expand file tree Collapse file tree 7 files changed +43
-39
lines changed Original file line number Diff line number Diff line change 11# changelog
22
3+ ## 1.17.4
4+ ` 2021-3-4 `
5+ * ` FIX ` [ #437 ] ( https://github.com/sumneko/lua-language-server/issues/437 ) again
6+ * ` FIX ` [ #438 ] ( https://github.com/sumneko/lua-language-server/issues/438 )
7+
38## 1.17.3
49` 2021-3-3 `
510* ` CHG ` intelli-scense: treat ` V[] ` as ` table<integer, V> ` in ` pairs `
611* ` FIX ` completion: ` detail ` disappears during continuous input
712* ` FIX ` [ #435 ] ( https://github.com/sumneko/lua-language-server/issues/435 )
813* ` FIX ` [ #436 ] ( https://github.com/sumneko/lua-language-server/issues/436 )
14+ * ` FIX ` [ #437 ] ( https://github.com/sumneko/lua-language-server/issues/437 )
915
1016## 1.17.2
1117` 2021-3-2 `
Original file line number Diff line number Diff line change 952952 "scope" : " resource" ,
953953 "type" : " integer"
954954 },
955+ "Lua.runtime.fileEncoding" : {
956+ "default" : " utf8" ,
957+ "enum" : [
958+ " utf8" ,
959+ " ansi"
960+ ],
961+ "markdownDescription" : " %config.runtime.fileEncoding%" ,
962+ "scope" : " resource" ,
963+ "type" : " string"
964+ },
955965 "Lua.runtime.nonstandardSymbol" : {
956966 "items" : {
957967 "enum" : [
10981108 "markdownDescription" : " %config.workspace.useGitIgnore%" ,
10991109 "scope" : " resource" ,
11001110 "type" : " boolean"
1101- },
1102- "lua.runtime.fileEncoding" : {
1103- "default" : " utf8" ,
1104- "enum" : [
1105- " utf8" ,
1106- " ansi"
1107- ],
1108- "markdownDescription" : " %config.runtime.fileEncoding%" ,
1109- "scope" : " resource" ,
1110- "type" : " string"
11111111 }
11121112 },
11131113 "title" : " Lua" ,
11571157 "icon" : " images/logo.png" ,
11581158 "keywords" : [
11591159 " Lua" ,
1160- " LSP" ,
1161- " GoTo Definition" ,
1162- " IntelliSense"
1160+ " IntelliSense" ,
1161+ " EmmyLua"
11631162 ],
11641163 "license" : " MIT" ,
11651164 "main" : " ./client/out/extension" ,
11691168 "type" : " git" ,
11701169 "url" : " https://github.com/sumneko/lua-language-server"
11711170 },
1172- "version" : " 1.17.3 "
1171+ "version" : " 1.17.4 "
11731172}
Original file line number Diff line number Diff line change 11local json = require ' json-beautify'
22
3- local VERSION = " 1.17.3 "
3+ local VERSION = " 1.17.4 "
44
55local package = require ' package.package'
66local fsu = require ' fs-utility'
Original file line number Diff line number Diff line change @@ -17,9 +17,8 @@ return {
1717 },
1818 keywords = {
1919 " Lua" ,
20- " LSP" ,
21- " GoTo Definition" ,
22- " IntelliSense"
20+ " IntelliSense" ,
21+ " EmmyLua" ,
2322 },
2423 engines = {
2524 vscode = " ^1.23.0"
Original file line number Diff line number Diff line change 936936 "scope" : " resource" ,
937937 "type" : " integer"
938938 },
939+ "Lua.runtime.fileEncoding" : {
940+ "default" : " utf8" ,
941+ "enum" : [
942+ " utf8" ,
943+ " ansi"
944+ ],
945+ "markdownDescription" : " 文件编码,`ansi` 选项只在 `Windows` 平台下有效。" ,
946+ "scope" : " resource" ,
947+ "type" : " string"
948+ },
939949 "Lua.runtime.nonstandardSymbol" : {
940950 "items" : {
941951 "enum" : [
10821092 "markdownDescription" : " 忽略 `.gitignore` 中列举的文件。" ,
10831093 "scope" : " resource" ,
10841094 "type" : " boolean"
1085- },
1086- "lua.runtime.fileEncoding" : {
1087- "default" : " utf8" ,
1088- "enum" : [
1089- " utf8" ,
1090- " ansi"
1091- ],
1092- "markdownDescription" : " 文件编码,`ansi` 选项只在 `Windows` 平台下有效。" ,
1093- "scope" : " resource" ,
1094- "type" : " string"
10951095 }
10961096 },
10971097 "title" : " setting" ,
Original file line number Diff line number Diff line change 936936 "scope" : " resource" ,
937937 "type" : " integer"
938938 },
939+ "Lua.runtime.fileEncoding" : {
940+ "default" : " utf8" ,
941+ "enum" : [
942+ " utf8" ,
943+ " ansi"
944+ ],
945+ "markdownDescription" : " File encoding. The `ansi` option is only available under the `Windows` platform." ,
946+ "scope" : " resource" ,
947+ "type" : " string"
948+ },
939949 "Lua.runtime.nonstandardSymbol" : {
940950 "items" : {
941951 "enum" : [
10821092 "markdownDescription" : " Ignore files list in `.gitignore` ." ,
10831093 "scope" : " resource" ,
10841094 "type" : " boolean"
1085- },
1086- "lua.runtime.fileEncoding" : {
1087- "default" : " utf8" ,
1088- "enum" : [
1089- " utf8" ,
1090- " ansi"
1091- ],
1092- "markdownDescription" : " File encoding. The `ansi` option is only available under the `Windows` platform." ,
1093- "scope" : " resource" ,
1094- "type" : " string"
10951095 }
10961096 },
10971097 "title" : " setting" ,
You can’t perform that action at this time.
0 commit comments