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, 3 insertions, 1 deletions
diff --git a/editors/code/src/commands/index.ts b/editors/code/src/commands/index.ts
index 2496c7ff8..d78a64c3e 100644
--- a/editors/code/src/commands/index.ts
+++ b/editors/code/src/commands/index.ts
@@ -2,6 +2,7 @@ import * as applySourceChange from './apply_source_change';
2import * as extendSelection from './extend_selection'; 2import * as extendSelection from './extend_selection';
3import * as joinLines from './join_lines'; 3import * as joinLines from './join_lines';
4import * as matchingBrace from './matching_brace'; 4import * as matchingBrace from './matching_brace';
5import * as on_enter from './on_enter';
5import * as parentModule from './parent_module'; 6import * as parentModule from './parent_module';
6import * as runnables from './runnables'; 7import * as runnables from './runnables';
7import * as syntaxTree from './syntaxTree'; 8import * as syntaxTree from './syntaxTree';
@@ -13,5 +14,6 @@ export {
13 matchingBrace, 14 matchingBrace,
14 parentModule, 15 parentModule,
15 runnables, 16 runnables,
16 syntaxTree 17 syntaxTree,
18 on_enter,
17}; 19};