Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1//todo!(linux): remove this once the relevant functionality has been implemented 2#![allow(unused_variables)] 3 4pub(crate) use client::*; 5pub(crate) use client_dispatcher::*; 6 7mod client; 8mod client_dispatcher; 9mod display; 10mod window;