diff options
Diffstat (limited to 'editors/code/src/commands/on_enter.ts')
-rw-r--r-- | editors/code/src/commands/on_enter.ts | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/editors/code/src/commands/on_enter.ts b/editors/code/src/commands/on_enter.ts index 4503e13f0..efc0dfe1d 100644 --- a/editors/code/src/commands/on_enter.ts +++ b/editors/code/src/commands/on_enter.ts | |||
@@ -1,8 +1,5 @@ | |||
1 | import * as lc from 'vscode-languageclient'; | 1 | import * as lc from 'vscode-languageclient'; |
2 | import { | 2 | import { applySourceChange, SourceChange } from '../source_change'; |
3 | applySourceChange, | ||
4 | SourceChange, | ||
5 | } from '../source_change'; | ||
6 | import { Cmd, Ctx } from '../ctx'; | 3 | import { Cmd, Ctx } from '../ctx'; |
7 | 4 | ||
8 | export function onEnter(ctx: Ctx): Cmd { | 5 | export function onEnter(ctx: Ctx): Cmd { |
@@ -24,5 +21,5 @@ export function onEnter(ctx: Ctx): Cmd { | |||
24 | 21 | ||
25 | await applySourceChange(ctx, change); | 22 | await applySourceChange(ctx, change); |
26 | return true; | 23 | return true; |
27 | } | 24 | }; |
28 | } | 25 | } |