Split folding ranges into editor and lsp parts

This commit is contained in:
Jeremy A. Kolb 2018-09-24 09:52:33 -04:00
parent bd2b2f1b48
commit ff0a706a30
4 changed files with 114 additions and 77 deletions

View file

@ -10,6 +10,7 @@ mod extend_selection;
mod symbols;
mod line_index;
mod edit;
mod folding_ranges;
mod code_actions;
mod typing;
mod completion;
@ -36,6 +37,7 @@ pub use self::{
},
typing::{join_lines, on_eq_typed},
completion::{scope_completion, CompletionItem},
folding_ranges::{Fold, FoldKind, folding_ranges}
};
#[derive(Debug)]