aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/commands/index.ts
diff options
context:
space:
mode:
authorbors[bot] <bors[bot]@users.noreply.github.com>2018-10-09 17:52:48 +0100
committerbors[bot] <bors[bot]@users.noreply.github.com>2018-10-09 17:52:48 +0100
commit31c8ebb743572ef07ac4ca77ddd17eddbcf4b24c (patch)
tree7a817485cf24ffe6e2acbec607115569bf3d8ac8 /editors/code/src/commands/index.ts
parent14baf11bd41eb17cfee79fd7f9d068c4e785aa71 (diff)
parent2b956fd3a83313cee37ff179eae843bc88dd572a (diff)
Merge #106
106: Add on-enter handler r=matklad a=matklad Now, typing doc comments is much more pleasant Co-authored-by: Aleksey Kladov <[email protected]>
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};