Move multi_buffer to editor crate

This commit is contained in:
Nathan Sobo 2021-12-10 17:37:53 -07:00
parent 6caf016df9
commit c8b43e3078
16 changed files with 44 additions and 47 deletions

View file

@ -1,7 +1,6 @@
mod buffer;
mod diagnostic_set;
mod highlight_map;
pub mod multi_buffer;
pub mod proto;
#[cfg(test)]
mod tests;
@ -14,7 +13,6 @@ use gpui::{executor::Background, AppContext};
use highlight_map::HighlightMap;
use lazy_static::lazy_static;
use lsp::LanguageServer;
pub use multi_buffer::MultiBuffer;
use parking_lot::Mutex;
use serde::Deserialize;
use std::{collections::HashSet, path::Path, str, sync::Arc};