Writing my own text editor, and daily-driving it
21–30 of 124 posts
Re: Writing my own text editor, and daily-driving it
#22Re: Writing my own text editor, and daily-driving it
#23Earlier quoted context omitted.
It's not that bad. You need really large files to notice. The largest realistic file I'll ever touch - sqlite3 amalgamation with 270k lines and 9.1 kB - still takes only 6 ms to memmove it on my poor laptop. Any regular up-to 10k lines file is memmoved in order of microseconds.
That's true for code editing, but it's nice to not have to reach for a different solution when editing huge files. Sometimes I like to open up big log files, JSON test data, etc.
Re: Writing my own text editor, and daily-driving it
#24Re: Writing my own text editor, and daily-driving it
#25Re: Writing my own text editor, and daily-driving it
#26I use my own text editor too. Nobody else seems to get value from it. I’m still surprised by the value we get from home grown solutions.
Re: Writing my own text editor, and daily-driving it
#27But I am now at home with Helix and Flow Control.
Re: Writing my own text editor, and daily-driving it
#28I use my own text editor too. Nobody else seems to get value from it. I’m still surprised by the value we get from home grown solutions.
Re: Writing my own text editor, and daily-driving it
#29Earlier quoted context omitted.
It's not that bad. You need really large files to notice. The largest realistic file I'll ever touch - sqlite3 amalgamation with 270k lines and 9.1 kB - still takes only 6 ms to memmove it on my poor laptop. Any regular up-to 10k lines file is memmoved in order of microseconds.
That's true for code editing, but it's nice to not have to reach for a different solution when editing huge files. Sometimes I like to open up big log files, JSON test data, etc.
Re: Writing my own text editor, and daily-driving it
#30Good old style editor that is a native app, not an electron app. All the features that you might want and more, but simple and efficient.
And the most important for me, super snappy. I can't bear the latency that you get for typing code when using things like vscode. I don't know how people can appreciate that.