aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/commands/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'editors/code/src/commands/index.ts')
-rw-r--r--editors/code/src/commands/index.ts4
1 files changed, 1 insertions, 3 deletions
diff --git a/editors/code/src/commands/index.ts b/editors/code/src/commands/index.ts
index 8090c7e5b..0a0a36e23 100644
--- a/editors/code/src/commands/index.ts
+++ b/editors/code/src/commands/index.ts
@@ -3,10 +3,9 @@ import { Ctx, Cmd } from '../ctx'
3import { analyzerStatus } from './analyzer_status'; 3import { analyzerStatus } from './analyzer_status';
4import { matchingBrace } from './matching_brace'; 4import { matchingBrace } from './matching_brace';
5import { joinLines } from './join_lines'; 5import { joinLines } from './join_lines';
6import * as applySourceChange from './apply_source_change'; 6import { onEnter } from './on_enter';
7import * as expandMacro from './expand_macro'; 7import * as expandMacro from './expand_macro';
8import * as inlayHints from './inlay_hints'; 8import * as inlayHints from './inlay_hints';
9import * as onEnter from './on_enter';
10import * as parentModule from './parent_module'; 9import * as parentModule from './parent_module';
11import * as runnables from './runnables'; 10import * as runnables from './runnables';
12import * as syntaxTree from './syntaxTree'; 11import * as syntaxTree from './syntaxTree';
@@ -17,7 +16,6 @@ function collectGarbage(ctx: Ctx): Cmd {
17 16
18export { 17export {
19 analyzerStatus, 18 analyzerStatus,
20 applySourceChange,
21 expandMacro, 19 expandMacro,
22 joinLines, 20 joinLines,
23 matchingBrace, 21 matchingBrace,