diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2023-02-15 15:51:57 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2023-02-15 15:51:57 +0800 |
commit | c28f8c8635105010e54033b2f47065c291590264 (patch) | |
tree | e48d5feb914cb8d8c6b79085bffe83f3503b8424 /doc/zh-cn | |
parent | e94d02039797fd71a0af1c8d857888ba1a7b7c14 (diff) | |
download | lua-language-server-c28f8c8635105010e54033b2f47065c291590264.zip |
fix empty object
Diffstat (limited to 'doc/zh-cn')
-rw-r--r-- | doc/zh-cn/config.md | 22 |
1 files changed, 3 insertions, 19 deletions
diff --git a/doc/zh-cn/config.md b/doc/zh-cn/config.md index 6bf64e3e..991932b6 100644 --- a/doc/zh-cn/config.md +++ b/doc/zh-cn/config.md @@ -698,7 +698,7 @@ object<string, string> ```jsonc { /* - 优先级歧义,如:`num or 0 + 1`,推测用户的实际期望为 `(num or 0) + 1` + 优先级歧义,如:`num or 0 + 1`,推测用户的实际期望为 `(num or 0) + 1` */ "ambiguity-1": "Any", /* @@ -945,7 +945,7 @@ object<string, string> ```jsonc { /* - 优先级歧义,如:`num or 0 + 1`,推测用户的实际期望为 `(num or 0) + 1` + 优先级歧义,如:`num or 0 + 1`,推测用户的实际期望为 `(num or 0) + 1` */ "ambiguity-1": "Warning", /* @@ -2160,22 +2160,6 @@ integer 500 ``` -# workspace.supportScheme - -为以下 scheme 的lua文件提供语言服务。 - -## type - -```ts -Array<string> -``` - -## default - -```jsonc -["file","untitled","git"] -``` - # workspace.useGitIgnore 忽略 `.gitignore` 中列举的文件。 @@ -2206,4 +2190,4 @@ Array<string> ```jsonc [] -``` +```
\ No newline at end of file |