aboutsummaryrefslogtreecommitdiff
path: root/crates/libeditor/src/lib.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-08-12 16:50:16 +0100
committerAleksey Kladov <[email protected]>2018-08-12 16:50:16 +0100
commit66be735aa98c32fb062d1c756fa9303ff2d13002 (patch)
treed679bef9b4005f969cfa5a369c6804195de6c779 /crates/libeditor/src/lib.rs
parent56aa6e20e0279c69e0130905573b1607056cfaf9 (diff)
flip comma
Diffstat (limited to 'crates/libeditor/src/lib.rs')
-rw-r--r--crates/libeditor/src/lib.rs7
1 files changed, 6 insertions, 1 deletions
diff --git a/crates/libeditor/src/lib.rs b/crates/libeditor/src/lib.rs
index 013d27450..103f32190 100644
--- a/crates/libeditor/src/lib.rs
+++ b/crates/libeditor/src/lib.rs
@@ -1,9 +1,12 @@
1extern crate libsyntax2; 1extern crate libsyntax2;
2extern crate superslice; 2extern crate superslice;
3extern crate itertools;
3 4
4mod extend_selection; 5mod extend_selection;
5mod symbols; 6mod symbols;
6mod line_index; 7mod line_index;
8mod edit;
9mod code_actions;
7 10
8use libsyntax2::{ 11use libsyntax2::{
9 ast::{self, NameOwner}, 12 ast::{self, NameOwner},
@@ -15,7 +18,9 @@ pub use libsyntax2::{File, TextRange, TextUnit};
15pub use self::{ 18pub use self::{
16 line_index::{LineIndex, LineCol}, 19 line_index::{LineIndex, LineCol},
17 extend_selection::extend_selection, 20 extend_selection::extend_selection,
18 symbols::{FileSymbol, file_symbols} 21 symbols::{FileSymbol, file_symbols},
22 edit::{EditBuilder, Edit},
23 code_actions::{flip_comma},
19}; 24};
20 25
21#[derive(Debug)] 26#[derive(Debug)]