Skip to content

Commit 7ac5941

Browse files
committed
update config
1 parent adcd09b commit 7ac5941

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

package/configuration.lua

+6
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,12 @@ local config = {
203203
default = 6,
204204
markdownDescription = "%config.completion.displayContext%",
205205
},
206+
['Lua.completion.workspaceWord'] = {
207+
scope = "resource",
208+
type = "boolean",
209+
default = true,
210+
markdownDescription = "%config.completion.workspaceWord%"
211+
},
206212
["Lua.color.mode"] = {
207213
scope = "resource",
208214
type = "string",

package/nls-zh-cn.lua

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ return {
3636
['config.completion.keywordSnippet.Both'] = "显示 `关键字` 与 `语法片段`。",
3737
['config.completion.keywordSnippet.Replace'] = "只显示 `语法片段`。",
3838
['config.completion.displayContext'] = "预览建议的相关代码片段,可能可以帮助你了解这项建议的用法。设置的数字表示代码片段的截取行数,设置为`0`可以禁用此功能。",
39+
['config.completion.workspaceWord'] = "显示工作区范围内的单词",
3940
['config.color.mode'] = "着色模式。",
4041
['config.color.mode.Semantic'] = "语义着色(测试中。你的颜色主题必须要支持语义着色才有效。)。",
4142
['config.color.mode.Grammar'] = "语法着色。",

package/nls.lua

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ The following example shows loaded files in `C:/lua` and `../lib` ,exclude `../l
3636
['config.completion.keywordSnippet.Both'] = "Shows `keyword` and `syntax snippet`.",
3737
['config.completion.keywordSnippet.Replace'] = "Only shows `syntax snippet`.",
3838
['config.completion.displayContext'] = "Previewing the relevant code snippet of the suggestion may help you understand the usage of the suggestion. The number set indicates the number of intercepted lines in the code fragment. If it is set to `0`, this feature can be disabled.",
39+
['config.completion.workspaceWord'] = "Shows words within the workspace.",
3940
['config.color.mode'] = "Color mode.",
4041
['config.color.mode.Semantic'] = "Semantic color (Testing. Your color theme must support semantic coloring to be effective.).",
4142
['config.color.mode.Grammar'] = "Grammar color.",

0 commit comments

Comments
 (0)