Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1pub mod assets; 2pub mod editor; 3pub mod file_finder; 4pub mod menus; 5mod operation_queue; 6pub mod settings; 7mod sum_tree; 8#[cfg(test)] 9mod test; 10mod time; 11mod timer; 12mod util; 13mod watch; 14pub mod workspace; 15mod worktree;