mirror of
https://github.com/hexedtech/codemp.git
synced 2024-11-25 08:34:47 +01:00
chore: moved select_buffer under buffer::tools
needed to more appropriately subdivide feature flags
This commit is contained in:
parent
1ee185b5ec
commit
4ae31df3ff
3 changed files with 5 additions and 5 deletions
|
@ -9,6 +9,9 @@
|
|||
/// buffer controller implementation
|
||||
pub mod controller;
|
||||
|
||||
/// assorted helpers to handle buffer controllers
|
||||
pub mod tools;
|
||||
|
||||
pub(crate) mod worker;
|
||||
|
||||
pub use controller::BufferController as Controller;
|
||||
pub use controller::BufferController as Controller;
|
||||
|
|
|
@ -47,4 +47,4 @@ pub async fn select_buffer(
|
|||
},
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -148,9 +148,6 @@ pub mod errors;
|
|||
#[cfg(feature = "client")]
|
||||
pub mod client;
|
||||
|
||||
/// assorted helpers
|
||||
pub mod tools;
|
||||
|
||||
/// workspace operations
|
||||
#[cfg(feature = "client")]
|
||||
pub mod workspace;
|
||||
|
|
Loading…
Reference in a new issue