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.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/editors/code/src/commands/index.ts b/editors/code/src/commands/index.ts
index 325ae3da8..9f4636e52 100644
--- a/editors/code/src/commands/index.ts
+++ b/editors/code/src/commands/index.ts
@@ -8,7 +8,7 @@ import { parentModule } from './parent_module';
8import { syntaxTree } from './syntax_tree'; 8import { syntaxTree } from './syntax_tree';
9import { expandMacro } from './expand_macro'; 9import { expandMacro } from './expand_macro';
10import * as inlayHints from './inlay_hints'; 10import * as inlayHints from './inlay_hints';
11import * as runnables from './runnables'; 11import { run, runSingle } from './runnables';
12 12
13function collectGarbage(ctx: Ctx): Cmd { 13function collectGarbage(ctx: Ctx): Cmd {
14 return async () => { 14 return async () => {
@@ -22,9 +22,10 @@ export {
22 joinLines, 22 joinLines,
23 matchingBrace, 23 matchingBrace,
24 parentModule, 24 parentModule,
25 runnables,
26 syntaxTree, 25 syntaxTree,
27 onEnter, 26 onEnter,
28 inlayHints, 27 inlayHints,
29 collectGarbage, 28 collectGarbage,
29 run,
30 runSingle
30}; 31};