Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1mod current_project; 2mod recent_buffers; 3 4pub use current_project::*; 5pub use recent_buffers::*; 6 7#[derive(Default)] 8pub struct AmbientContext { 9 pub recent_buffers: RecentBuffersContext, 10 pub current_project: CurrentProjectContext, 11}