diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2019-12-30 18:36:34 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2019-12-30 18:36:34 +0000 |
commit | 237abb85c40672e8cdafa423db6187c107369a09 (patch) | |
tree | 7c1c6f94918bbb4343f0a2122c8989978ff5b9ac /editors/code/src/commands/index.ts | |
parent | 7c1634a9c2d76ea8c152c368775391090d62db8f (diff) | |
parent | 94be27fc44763afbf67d36010d4aa05639191e4b (diff) |
Merge #2692
2692: Move expand macro to the new context r=matklad a=matklad
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'editors/code/src/commands/index.ts')
-rw-r--r-- | editors/code/src/commands/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/commands/index.ts b/editors/code/src/commands/index.ts index 8f91b3b7d..325ae3da8 100644 --- a/editors/code/src/commands/index.ts +++ b/editors/code/src/commands/index.ts | |||
@@ -6,7 +6,7 @@ import { joinLines } from './join_lines'; | |||
6 | import { onEnter } from './on_enter'; | 6 | import { onEnter } from './on_enter'; |
7 | import { parentModule } from './parent_module'; | 7 | import { parentModule } from './parent_module'; |
8 | import { syntaxTree } from './syntax_tree'; | 8 | import { syntaxTree } from './syntax_tree'; |
9 | import * as 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 * as runnables from './runnables'; |
12 | 12 | ||