aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/commands.ts
blob: 99cac3379e435c3c91ba2d054fcb6d7809c186b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import * as applySourceChange from './commands/apply_source_change';
import * as extendSelection from './commands/extend_selection';
import * as joinLines from './commands/join_lines';
import * as matchingBrace from './commands/matching_brace';
import * as parentModule from './commands/parent_module';
import * as runnables from './commands/runnables';
import * as syntaxTree from './commands/syntaxTree';

export {
    applySourceChange,
    extendSelection,
    joinLines,
    matchingBrace,
    parentModule,
    runnables,
    syntaxTree
}