aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/commands/join_lines.ts
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-01-28 11:43:07 +0000
committerAleksey Kladov <[email protected]>2019-01-28 12:01:22 +0000
commitd1a67c1174abfb99b67b8db89c9f27c741e85057 (patch)
treeb589fcf2ee7d816f3f18bd83b8e88738dcb6fd4f /editors/code/src/commands/join_lines.ts
parent7abe1f422c1a1230ad5b39474101806c438ef452 (diff)
align command naming
Diffstat (limited to 'editors/code/src/commands/join_lines.ts')
-rw-r--r--editors/code/src/commands/join_lines.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/commands/join_lines.ts b/editors/code/src/commands/join_lines.ts
index 27d263b8a..0d4b12f4d 100644
--- a/editors/code/src/commands/join_lines.ts
+++ b/editors/code/src/commands/join_lines.ts
@@ -22,7 +22,7 @@ export async function handle() {
22 textDocument: { uri: editor.document.uri.toString() } 22 textDocument: { uri: editor.document.uri.toString() }
23 }; 23 };
24 const change = await Server.client.sendRequest<SourceChange>( 24 const change = await Server.client.sendRequest<SourceChange>(
25 'm/joinLines', 25 'rust-analyzer/joinLines',
26 request 26 request
27 ); 27 );
28 await applySourceChange(change); 28 await applySourceChange(change);