mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-29 21:35:20 +00:00
Add on-enter handler
Now, typing doc comments is much more pleasant
This commit is contained in:
parent
82447ecace
commit
2b956fd3a8
12 changed files with 630 additions and 401 deletions
|
@ -2,6 +2,7 @@ import * as applySourceChange from './apply_source_change';
|
|||
import * as extendSelection from './extend_selection';
|
||||
import * as joinLines from './join_lines';
|
||||
import * as matchingBrace from './matching_brace';
|
||||
import * as on_enter from './on_enter';
|
||||
import * as parentModule from './parent_module';
|
||||
import * as runnables from './runnables';
|
||||
import * as syntaxTree from './syntaxTree';
|
||||
|
@ -13,5 +14,6 @@ export {
|
|||
matchingBrace,
|
||||
parentModule,
|
||||
runnables,
|
||||
syntaxTree
|
||||
syntaxTree,
|
||||
on_enter,
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue