diff options
Diffstat (limited to 'editors/code/src/commands/index.ts')
-rw-r--r-- | editors/code/src/commands/index.ts | 5 |
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'; | |||
8 | import { syntaxTree } from './syntax_tree'; | 8 | import { syntaxTree } from './syntax_tree'; |
9 | import { expandMacro } from './expand_macro'; | 9 | import { expandMacro } from './expand_macro'; |
10 | import * as inlayHints from './inlay_hints'; | 10 | import * as inlayHints from './inlay_hints'; |
11 | import * as runnables from './runnables'; | 11 | import { run, runSingle } from './runnables'; |
12 | 12 | ||
13 | function collectGarbage(ctx: Ctx): Cmd { | 13 | function 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 | }; |