aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/commands/index.ts
blob: 9f4636e5278669334a911bf64ab5e832600b1396 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import { Ctx, Cmd } from '../ctx';

import { analyzerStatus } from './analyzer_status';
import { matchingBrace } from './matching_brace';
import { joinLines } from './join_lines';
import { onEnter } from './on_enter';
import { parentModule } from './parent_module';
import { syntaxTree } from './syntax_tree';
import { expandMacro } from './expand_macro';
import * as inlayHints from './inlay_hints';
import { run, runSingle } from './runnables';

function collectGarbage(ctx: Ctx): Cmd {
    return async () => {
        ctx.client.sendRequest<null>('rust-analyzer/collectGarbage', null);
    };
}

export {
    analyzerStatus,
    expandMacro,
    joinLines,
    matchingBrace,
    parentModule,
    syntaxTree,
    onEnter,
    inlayHints,
    collectGarbage,
    run,
    runSingle
};