mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-07-04 14:34:33 +02:00
fix(typescript): vtsls server expe settings (#3372)
Based on [vtsls schema](bd2df5a2d4/packages/service/configuration.schema.json (L1092)
), experimental setting should be vtsls property not typescript.
```json
"vtsls.experimental.completion.enableServerSideFuzzyMatch": {
"default": false,
"type": "boolean",
"description": "Execute fuzzy match of completion items on server side. Enable this will help filter out useless completion items from tsserver."
},
```
This commit is contained in:
parent
c2ef09227e
commit
ae098d67d6
1 changed files with 3 additions and 3 deletions
|
@ -36,14 +36,14 @@ return {
|
||||||
complete_function_calls = true,
|
complete_function_calls = true,
|
||||||
vtsls = {
|
vtsls = {
|
||||||
enableMoveToFileCodeAction = true,
|
enableMoveToFileCodeAction = true,
|
||||||
},
|
|
||||||
typescript = {
|
|
||||||
updateImportsOnFileMove = { enabled = "always" },
|
|
||||||
experimental = {
|
experimental = {
|
||||||
completion = {
|
completion = {
|
||||||
enableServerSideFuzzyMatch = true,
|
enableServerSideFuzzyMatch = true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
},
|
||||||
|
typescript = {
|
||||||
|
updateImportsOnFileMove = { enabled = "always" },
|
||||||
suggest = {
|
suggest = {
|
||||||
completeFunctionCalls = true,
|
completeFunctionCalls = true,
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue