diff options
| author | Kitson Kelly <me@kitsonkelly.com> | 2021-02-05 05:53:02 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-05 05:53:02 +1100 |
| commit | b77fcbc518428429e39f5ba94e41fcd0418ee7a0 (patch) | |
| tree | 0051cc7e5ac0c8f83278de093a2be7209cf9fcfc /cli/tests/lsp/initialize_request.json | |
| parent | 644a7ff2d70cbd8bfba4c87b75a047e79830c4b6 (diff) | |
feat(lsp): add TS quick fix code actions (#9396)
Diffstat (limited to 'cli/tests/lsp/initialize_request.json')
| -rw-r--r-- | cli/tests/lsp/initialize_request.json | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/cli/tests/lsp/initialize_request.json b/cli/tests/lsp/initialize_request.json index 46f96a2c5..eaea00a18 100644 --- a/cli/tests/lsp/initialize_request.json +++ b/cli/tests/lsp/initialize_request.json @@ -20,6 +20,22 @@ }, "capabilities": { "textDocument": { + "codeAction": { + "codeActionLiteralSupport": { + "codeActionKind": { + "valueSet": [ + "quickfix" + ] + } + }, + "isPreferredSupport": true, + "dataSupport": true, + "resolveSupport": { + "properties": [ + "edit" + ] + } + }, "synchronization": { "dynamicRegistration": true, "willSave": true, |
