about summary refs log tree commit diff
path: root/editors/code/src/run.ts
diff options
context:
space:
mode:
authorAleksey Kladov <aleksey.kladov@gmail.com>2020-05-25 14:56:26 +0200
committerAleksey Kladov <aleksey.kladov@gmail.com>2020-05-25 14:56:26 +0200
commita30bdd9795770329e4562d8bfca60ebe2e52dea1 (patch)
tree510b580723f06fd3ae1e4c641001afa82a426b60 /editors/code/src/run.ts
parent8686d0b0ac765c2144b22b897de1d8fda68ecc6e (diff)
downloadrust-a30bdd9795770329e4562d8bfca60ebe2e52dea1.tar.gz
rust-a30bdd9795770329e4562d8bfca60ebe2e52dea1.zip
Cleanup lsp extensions on the client side
Diffstat (limited to 'editors/code/src/run.ts')
-rw-r--r--editors/code/src/run.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/run.ts b/editors/code/src/run.ts
index 8f0487d74a1..2a7a429cfa6 100644
--- a/editors/code/src/run.ts
+++ b/editors/code/src/run.ts
@@ -1,6 +1,6 @@
 import * as vscode from 'vscode';
 import * as lc from 'vscode-languageclient';
-import * as ra from './rust-analyzer-api';
+import * as ra from './lsp_ext';
 
 import { Ctx, Cmd } from './ctx';
 import { startDebugSession, getDebugConfiguration } from './debug';