diff options
author | Rebecca Turner <rbt@sent.as> | 2023-09-30 15:09:00 -0700 |
---|---|---|
committer | Rebecca Turner <rbt@sent.as> | 2023-10-18 10:00:50 -0700 |
commit | 5f7b0a3dd4ae5ff346ea5cfd1436ae9d54f00474 (patch) | |
tree | eec3615d0ae4135a4b2176c50e1857529f5f3560 /doc/zh-cn | |
parent | 4819a7ad29ab38f6cec0c04e767494d6130f46b2 (diff) | |
download | lua-language-server-5f7b0a3dd4ae5ff346ea5cfd1436ae9d54f00474.zip |
Make `workspace.checkThirdParty` a string enum
This lets you skip the "apply third party library to workspace
configuration" prompt.
Diffstat (limited to 'doc/zh-cn')
-rw-r--r-- | doc/zh-cn/config.md | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/doc/zh-cn/config.md b/doc/zh-cn/config.md index 26b54ad5..1866fb82 100644 --- a/doc/zh-cn/config.md +++ b/doc/zh-cn/config.md @@ -2172,17 +2172,25 @@ true * skynet * Jass +Value can be one of: +* `Ask` (ask every time) +* `Apply` (always apply third-party libraries and set the workspace + configuration) +* `ApplyInMemory` (always apply third-party libraries but don't set the + workspace configuration) +* `Disable` (don't ask and don't apply) + ## type ```ts -boolean +string ``` ## default ```jsonc -true +"Ask" ``` # workspace.ignoreDir |