diff options
| author | Kitson Kelly <me@kitsonkelly.com> | 2021-06-01 19:24:36 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-01 19:24:36 +1000 |
| commit | 9abb899f5fd36da65aae78351df3f478f8363700 (patch) | |
| tree | 8948798d0e38eee9ebcdf6ecdd578e01f215bdd5 /cli/tests/lsp/initialize_params_did_config_change.json | |
| parent | e466a6fc9ade08c8ca17322d47017709eecc4444 (diff) | |
fix(lsp): updates to workspace config are processed sync (#10812)
Diffstat (limited to 'cli/tests/lsp/initialize_params_did_config_change.json')
| -rw-r--r-- | cli/tests/lsp/initialize_params_did_config_change.json | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/cli/tests/lsp/initialize_params_did_config_change.json b/cli/tests/lsp/initialize_params_did_config_change.json new file mode 100644 index 000000000..02237c788 --- /dev/null +++ b/cli/tests/lsp/initialize_params_did_config_change.json @@ -0,0 +1,62 @@ +{ + "processId": 0, + "clientInfo": { + "name": "test-harness", + "version": "1.0.0" + }, + "rootUri": null, + "initializationOptions": { + "enable": true, + "codeLens": { + "implementations": true, + "references": true + }, + "importMap": null, + "lint": true, + "suggest": { + "autoImports": true, + "completeFunctionCalls": false, + "names": true, + "paths": true, + "imports": { + "hosts": { + "http://localhost:4545/": false + } + } + }, + "unstable": false + }, + "capabilities": { + "textDocument": { + "codeAction": { + "codeActionLiteralSupport": { + "codeActionKind": { + "valueSet": [ + "quickfix" + ] + } + }, + "isPreferredSupport": true, + "dataSupport": true, + "resolveSupport": { + "properties": [ + "edit" + ] + } + }, + "foldingRange": { + "lineFoldingOnly": true + }, + "synchronization": { + "dynamicRegistration": true, + "willSave": true, + "willSaveWaitUntil": true, + "didSave": true + } + }, + "workspace": { + "configuration": true, + "workspaceFolders": true + } + } +} |
