Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1use gpui::DefiniteLength; 2 3pub trait FixedWidth { 4 fn width(self, width: DefiniteLength) -> Self; 5 fn full_width(self) -> Self; 6}