From d9d4a5d73c28741deaa2c93d87672ce117315fbf Mon Sep 17 00:00:00 2001 From: Kitson Kelly Date: Fri, 9 Apr 2021 11:27:27 +1000 Subject: feat(lsp): add registry import auto-complete (#9934) --- cli/tests/lsp/completion_request_registry.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 cli/tests/lsp/completion_request_registry.json (limited to 'cli/tests/lsp/completion_request_registry.json') diff --git a/cli/tests/lsp/completion_request_registry.json b/cli/tests/lsp/completion_request_registry.json new file mode 100644 index 000000000..2165fbdab --- /dev/null +++ b/cli/tests/lsp/completion_request_registry.json @@ -0,0 +1,18 @@ +{ + "jsonrpc": "2.0", + "id": 2, + "method": "textDocument/completion", + "params": { + "textDocument": { + "uri": "file:///a/file.ts" + }, + "position": { + "line": 0, + "character": 46 + }, + "context": { + "triggerKind": 2, + "triggerCharacter": "@" + } + } +} -- cgit v1.2.3