aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/commands/index.ts
diff options
context:
space:
mode:
authorAdolfo OchagavĂ­a <[email protected]>2018-10-09 21:56:15 +0100
committerAdolfo OchagavĂ­a <[email protected]>2018-10-09 21:56:22 +0100
commitf2d719b24afd404dbaf26332ff314a6161c74b71 (patch)
tree54c1381ec3d57cbd0722053900e02f3a7ad10cd2 /editors/code/src/commands/index.ts
parent31c8ebb743572ef07ac4ca77ddd17eddbcf4b24c (diff)
Format vscode extension and add npm run fix
Diffstat (limited to 'editors/code/src/commands/index.ts')
-rw-r--r--editors/code/src/commands/index.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/code/src/commands/index.ts b/editors/code/src/commands/index.ts
index d78a64c3e..33e2b34a2 100644
--- a/editors/code/src/commands/index.ts
+++ b/editors/code/src/commands/index.ts
@@ -2,7 +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 onEnter from './on_enter';
6import * as parentModule from './parent_module'; 6import * as parentModule from './parent_module';
7import * as runnables from './runnables'; 7import * as runnables from './runnables';
8import * as syntaxTree from './syntaxTree'; 8import * as syntaxTree from './syntaxTree';
@@ -15,5 +15,5 @@ export {
15 parentModule, 15 parentModule,
16 runnables, 16 runnables,
17 syntaxTree, 17 syntaxTree,
18 on_enter, 18 onEnter
19}; 19};