aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src
diff options
context:
space:
mode:
authorJeremy Kolb <[email protected]>2021-02-13 18:54:39 +0000
committerJeremy Kolb <[email protected]>2021-02-14 19:51:29 +0000
commit8105418b25ad7d4d6facc68ab6818573f30b44a4 (patch)
tree2b1b3fca36b16826d0214e04235fdbbc7f008eea /editors/code/src
parent425c56aa52b13c010f99cb26202c00517c02f846 (diff)
Start LSP 3.17 support
Diffstat (limited to 'editors/code/src')
-rw-r--r--editors/code/src/client.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/client.ts b/editors/code/src/client.ts
index aec5c70c0..db5f4c023 100644
--- a/editors/code/src/client.ts
+++ b/editors/code/src/client.ts
@@ -79,7 +79,7 @@ export function createClient(serverPath: string, cwd: string, extraEnv: Env): lc
79 return hover; 79 return hover;
80 }, 80 },
81 (error) => { 81 (error) => {
82 client.handleFailedRequest(lc.HoverRequest.type, error, null); 82 client.handleFailedRequest(lc.HoverRequest.type, token, error, null);
83 return Promise.resolve(null); 83 return Promise.resolve(null);
84 }); 84 });
85 }, 85 },