Skip to content

Commit e284298

Browse files
committedDec 31, 2020
1.9.0
1 parent 7ac5941 commit e284298

8 files changed

+33
-3
lines changed
 

‎changelog.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# changelog
22

3+
## 1.9.0
4+
`2020-12-31`
5+
* `NEW` YEAR! Peace and love!
6+
* `NEW` specify path of `log` and `meta` by `--logpath=xxx` and `--metapath=XXX` in command line
7+
* `NEW` completion: worksapce word
8+
* `NEW` completion: show words in comment
9+
* `NEW` completion: generate function documentation
10+
* `CHG` got arg after script name: `lua-language-server.exe main.lua --logpath=D:\log --metapath=D:\meta --develop=false`
11+
* `FIX` runtime errors
12+
313
## 1.8.2
414
`2020-12-29`
515
* `CHG` performance optimization

‎package.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,12 @@
7676
"scope": "resource",
7777
"type": "string"
7878
},
79+
"Lua.completion.workspaceWord": {
80+
"default": true,
81+
"markdownDescription": "%config.completion.workspaceWord%",
82+
"scope": "resource",
83+
"type": "boolean"
84+
},
7985
"Lua.develop.debuggerPort": {
8086
"default": 11412,
8187
"markdownDescription": "%config.develop.debuggerPort%",
@@ -1013,5 +1019,5 @@
10131019
"type": "git",
10141020
"url": "https://github.com/sumneko/lua-language-server"
10151021
},
1016-
"version": "1.8.2"
1022+
"version": "1.9.0"
10171023
}

‎package.nls.json

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"config.completion.keywordSnippet.Both": "Shows `keyword` and `syntax snippet`.",
1414
"config.completion.keywordSnippet.Disable": "Only shows `keyword`.",
1515
"config.completion.keywordSnippet.Replace": "Only shows `syntax snippet`.",
16+
"config.completion.workspaceWord": "Shows words within the workspace.",
1617
"config.develop.debuggerPort": "Listen port of debugger.",
1718
"config.develop.debuggerWait": "Suspend before debugger connects.",
1819
"config.develop.enable": "Developer mode. Do not enable, performance will be affected.",

‎package.nls.zh-cn.json

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"config.completion.keywordSnippet.Both": "显示 `关键字` 与 `语法片段`。",
1515
"config.completion.keywordSnippet.Disable": "只显示 `关键字`。",
1616
"config.completion.keywordSnippet.Replace": "只显示 `语法片段`。",
17+
"config.completion.workspaceWord": "显示工作区范围内的单词",
1718
"config.develop.debuggerPort": "调试器监听端口。",
1819
"config.develop.debuggerWait": "调试器连接之前挂起。",
1920
"config.develop.enable": "开发者模式。请勿开启,会影响性能。",

‎package/build.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
local json = require 'json-beautify'
22

3-
local VERSION = "1.8.2"
3+
local VERSION = "1.9.0"
44

55
local package = require 'package.package'
66
local fsu = require 'fs-utility'

‎server

‎setting/schema-zh-cn.json

+6
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,12 @@
6060
"scope": "resource",
6161
"type": "string"
6262
},
63+
"Lua.completion.workspaceWord": {
64+
"default": true,
65+
"markdownDescription": "显示工作区范围内的单词",
66+
"scope": "resource",
67+
"type": "boolean"
68+
},
6369
"Lua.develop.debuggerPort": {
6470
"default": 11412,
6571
"markdownDescription": "调试器监听端口。",

‎setting/schema.json

+6
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,12 @@
6060
"scope": "resource",
6161
"type": "string"
6262
},
63+
"Lua.completion.workspaceWord": {
64+
"default": true,
65+
"markdownDescription": "Shows words within the workspace.",
66+
"scope": "resource",
67+
"type": "boolean"
68+
},
6369
"Lua.develop.debuggerPort": {
6470
"default": 11412,
6571
"markdownDescription": "Listen port of debugger.",

0 commit comments

Comments
 (0)