diff options
author | bors[bot] <bors[bot]@users.noreply.github.com> | 2019-01-28 12:01:56 +0000 |
---|---|---|
committer | bors[bot] <bors[bot]@users.noreply.github.com> | 2019-01-28 12:01:56 +0000 |
commit | 3432c4366f578b4f0a9a6e0384292d72e43ebf03 (patch) | |
tree | b589fcf2ee7d816f3f18bd83b8e88738dcb6fd4f /editors/code/src/commands/on_enter.ts | |
parent | 7abe1f422c1a1230ad5b39474101806c438ef452 (diff) | |
parent | d1a67c1174abfb99b67b8db89c9f27c741e85057 (diff) |
Merge #695
695: align command naming r=matklad a=matklad
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'editors/code/src/commands/on_enter.ts')
-rw-r--r-- | editors/code/src/commands/on_enter.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/commands/on_enter.ts b/editors/code/src/commands/on_enter.ts index bb376e3cb..16dcb70c8 100644 --- a/editors/code/src/commands/on_enter.ts +++ b/editors/code/src/commands/on_enter.ts | |||
@@ -22,7 +22,7 @@ export async function handle(event: { text: string }): Promise<boolean> { | |||
22 | ) | 22 | ) |
23 | }; | 23 | }; |
24 | const change = await Server.client.sendRequest<undefined | SourceChange>( | 24 | const change = await Server.client.sendRequest<undefined | SourceChange>( |
25 | 'm/onEnter', | 25 | 'rust-analyzer/onEnter', |
26 | request | 26 | request |
27 | ); | 27 | ); |
28 | if (!change) { | 28 | if (!change) { |