Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1#[cfg(target_os = "macos")] 2mod macos; 3 4#[cfg(target_os = "macos")] 5pub use macos::*; 6 7#[cfg(not(target_os = "macos"))] 8mod cross_platform; 9 10#[cfg(not(target_os = "macos"))] 11pub use cross_platform::*;