summaryrefslogtreecommitdiff
path: root/doc/zh-tw
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2023-01-16 18:21:19 +0800
committer最萌小汐 <sumneko@hotmail.com>2023-01-16 18:21:19 +0800
commitbe4dcc0fb3ad331a882f57f20e90bbca30770323 (patch)
tree4196788515f5669f01e695bcbbb83d0cd69720e4 /doc/zh-tw
parentdbe11f8bcfd51d98ab42e167f6be1c062c80264c (diff)
downloadlua-language-server-be4dcc0fb3ad331a882f57f20e90bbca30770323.zip
remove telemetry
Diffstat (limited to 'doc/zh-tw')
-rw-r--r--doc/zh-tw/config.md33
1 files changed, 16 insertions, 17 deletions
diff --git a/doc/zh-tw/config.md b/doc/zh-tw/config.md
index 636cdd1a..ea550ed1 100644
--- a/doc/zh-tw/config.md
+++ b/doc/zh-tw/config.md
@@ -1,3 +1,19 @@
+# codeLens.enable
+
+Enable code lens.
+
+## type
+
+```ts
+boolean
+```
+
+## default
+
+```jsonc
+false
+```
+
# completion.autoRequire
輸入內容看起來是個檔名時,自動 `require` 此檔案。
@@ -1924,23 +1940,6 @@ Array<string>
[]
```
-# telemetry.enable
-
-啟用遙測,透過網路發送你的編輯器資訊與錯誤日誌。在[此處](https://github.com/sumneko/lua-language-server/wiki/Home#privacy)閱讀我們的隱私聲明。
-
-
-## type
-
-```ts
-boolean | null
-```
-
-## default
-
-```jsonc
-null
-```
-
# type.castNumberToInteger
允許將 `number` 類型賦值給 `integer` 類型。