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