aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/commands/on_enter.ts
diff options
context:
space:
mode:
Diffstat (limited to 'editors/code/src/commands/on_enter.ts')
-rw-r--r--editors/code/src/commands/on_enter.ts7
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 @@
1import * as lc from 'vscode-languageclient'; 1import * as lc from 'vscode-languageclient';
2import { 2import { applySourceChange, SourceChange } from '../source_change';
3 applySourceChange,
4 SourceChange,
5} from '../source_change';
6import { Cmd, Ctx } from '../ctx'; 3import { Cmd, Ctx } from '../ctx';
7 4
8export function onEnter(ctx: Ctx): Cmd { 5export 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}