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 2#![allow(unused)] 3 4mod dispatcher; 5mod platform; 6mod wayland; 7mod x11; 8 9pub(crate) use dispatcher::*; 10pub(crate) use platform::*; 11pub(crate) use wayland::*; 12pub(crate) use x11::*;