59 points ernestrc 3 hours ago 13 comments

ernestrc 3 hours ago | parent

Author here! The post explains some of the details behind using Go as the primary language for building an IDE. It also introduces our novel contributor program, which will distribute some of Unstable Build's proceeds amongst participating developers, as opposed to making them sign a CLA to surrender their rights to a company. Happy to answer questions!

fishgoesblub 1 hour ago | parent

Lovely to see, this was my main gripe the last I saw it. Also great to see it under the GPLv3, and not some crap like MIT.

ramon156 1 hour ago | parent

Lovely write-up! Will take a look at rune as an alternative to my Zed setup.

Not because I dislike Zed, I'm just addicted to trying out IDEs :)

ernestrc 43 minutes ago | parent

Thanks! We spend so many hours staring at these UIs.. I totally get it. It’s like driving a new car.

purpleidea 57 minutes ago | parent

(I will try this as soon as there is a package in Fedora... That's my personal subjective bar to choosing a new EDITOR. But I definitely hope this succeeds, I'm a fan so far.)

ernestrc 48 minutes ago | parent

It’s a long process to get into Fedora, but we’re gonna give it a shot for sure.

criticalfault 31 minutes ago | parent

what about flatpak?

Conan_Kudo 37 seconds ago | parent

Since it's written in Go, you might want to reach out to the Fedora Go SIG and see if they can help you. :)

rao-v 33 minutes ago | parent

I like the idea of making it trivial to work across multiple machines but I’d really prefer not to have to trust your coordination server and encryption approach etc.

Could this (optionally) just run over Tailscale (I suppose ssh is always an option)

https://docs.rune.build/learn/network

anigbrowl 33 minutes ago | parent

The open ledger and profit-sharing for contributors might be an even more interesting innovation than the IDE itself. I like my existing IDE but Rune looks very nice so I'll certainly give it a whirl.

bobajeff 29 minutes ago | parent

I'm always looking for new gui code editors. For me right now Vscode is still the top (and since I've been trying Lean out it's required). Zed is a very close second.

One thing I would like to see on the home page is a video showing it being used. Also would like to see how it looks in a light theme. The repository says it's keyboard driven does that mean it's modal or can I still use it like a normal modeless editor?

ernestrc 24 seconds ago | parent

> One thing I would like to see on the home page is a video showing it being used. Fair point. I've been meaning to record a video for a while, but I hate being in front of a camera.

> Also would like to see how it looks in a light theme. Not great. I prefer dark themes so I haven't spent enough time making it look good on a light theme.

> The repository says it's keyboard driven does that mean it's modal or can I still use it like a normal modeless editor? There's three modes, vim, emacs and standard, which determine the key bindings not just when opening a file, but also everywhere else. https://docs.rune.build/learn/standard-editor

elcritch 27 minutes ago | parent

vtebench is just what I've been wanting! Rune looks pretty cool too. Awesome to see people working on polishing things.

I've been building my own editor and gui toolkit, but modeled on Cocoa/OpenStep and similarly found tuning terminal performance involved more about tuning memory access and storage. That sounds somewhat similar to the experience in TFA.