diff options
| author | Kitson Kelly <me@kitsonkelly.com> | 2022-07-12 09:35:18 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-12 09:35:18 +1000 |
| commit | 5db16d122914336124620a5152655917e58f05a6 (patch) | |
| tree | 41c5124e3fbe7ba13a54ab710c2bdbabbbea1d95 /cli/tests/testdata | |
| parent | 82431062fa6dd82679e1903dda4e33103a0299da (diff) | |
fix(lsp): enable auto imports (#15145)
Fixes: #15111
Diffstat (limited to 'cli/tests/testdata')
| -rw-r--r-- | cli/tests/testdata/lsp/completion_request_response_empty.json | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/cli/tests/testdata/lsp/completion_request_response_empty.json b/cli/tests/testdata/lsp/completion_request_response_empty.json index 272dfb475..c2218aaa7 100644 --- a/cli/tests/testdata/lsp/completion_request_response_empty.json +++ b/cli/tests/testdata/lsp/completion_request_response_empty.json @@ -6,14 +6,24 @@ "kind": 19, "detail": "(local)", "sortText": "1", - "insertText": "." + "insertText": ".", + "commitCharacters": [ + "\"", + "'", + "/" + ] }, { "label": "..", "kind": 19, "detail": "(local)", "sortText": "1", - "insertText": ".." + "insertText": "..", + "commitCharacters": [ + "\"", + "'", + "/" + ] }, { "label": "http://localhost:4545", |
