News: 0001630738

  ARM Give a man a fire and he's warm for a day, but set fire to him and he's warm for the rest of his life (Terry Pratchett, Jingo)

Rust-Written Zed 1.0 Code Editor Released

([Programming] 58 Minutes Ago Zed 1.0)


Zed, the cross platform, open-source text/code editor written by the developers behind the Atom editor, has finally reached version 1.0.

The Zed 1.0 features real-time collaborative editing, AI integration, GPU-accelerated rendering, Git integration, debugging, and is written in the Rust programming language.

[1]

Zed 1.0 is available on Windows, macOS, and Linux platforms.

[2]

As for what v1.0 means to Zed:

"1.0 doesn't mean "done". It also doesn't mean "perfect". It means we've reached a tipping point where most developers can quickly feel at home in Zed. If you tried Zed a year or two ago and bounced because something was missing, 1.0 is our invitation to try again. Zed is more capable than it's ever been, and still more performant."

More details on today's Zed 1.0 release can be found via the [3]Zed.dev blog .



[1] https://www.phoronix.com/image-viewer.php?id=2026&image=zed_10_1_lrg

[2] https://www.phoronix.com/image-viewer.php?id=2026&image=zed_10_2_lrg

[3] https://zed.dev/blog/zed-1-0



... C++ offers even more flexible control over the visibility of member
objects and member functions. Specifically, members may be placed in the
public, private, or protected parts of a class. Members declared in the
public parts are visible to all clients; members declared in the private
parts are fully encapsulated; and members declared in the protected parts
are visible only to the class itself and its subclasses. C++ also supports
the notion of *_______friends*: cooperative classes that are
permitted to see each other's private parts.
-- Grady Booch, "Object Oriented Design with Applications"