←back to thread

16 points vasko | 1 comments | | HN request time: 0.273s | source

I don't think I've ever been truly happy with a text editor, the closes I got is my current neovim setup that has just way too many plugins but it still just isn't quite what I want. So I thought, how hard could it be to write one? Anyone gone down this road before?
1. marssaxman ◴[] No.45076029[source]
I wrote my own editor, many years ago. I have been using it every day ever since, for all the coding work I do. It is a terminal program, so maintenance has not been burdensome.

https://www.github.com/marssaxman/ozette/

If I did it over again, I might use a rope instead of a line array as the central data structure, but it works well enough that I've never bothered to change it.