aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/extension.ts
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-04-21 10:13:48 +0100
committerAleksey Kladov <[email protected]>2019-04-21 10:13:48 +0100
commitfa12ed2b8f3466af88644e59127cd169549f8899 (patch)
tree8837e4192d6121115a5a9b94044d33bd683184b2 /editors/code/src/extension.ts
parent31b7697cf6f4ebb4ebc35b055e6b4ad9a28e28e9 (diff)
switch to official extend selection API
Diffstat (limited to 'editors/code/src/extension.ts')
-rw-r--r--editors/code/src/extension.ts4
1 files changed, 0 insertions, 4 deletions
diff --git a/editors/code/src/extension.ts b/editors/code/src/extension.ts
index 48dd2a614..c8c3004a7 100644
--- a/editors/code/src/extension.ts
+++ b/editors/code/src/extension.ts
@@ -58,10 +58,6 @@ export function activate(context: vscode.ExtensionContext) {
58 Server.client.sendRequest<null>('rust-analyzer/collectGarbage', null) 58 Server.client.sendRequest<null>('rust-analyzer/collectGarbage', null)
59 ); 59 );
60 registerCommand( 60 registerCommand(
61 'rust-analyzer.extendSelection',
62 commands.extendSelection.handle
63 );
64 registerCommand(
65 'rust-analyzer.matchingBrace', 61 'rust-analyzer.matchingBrace',
66 commands.matchingBrace.handle 62 commands.matchingBrace.handle
67 ); 63 );