this post was submitted on 09 Aug 2026
445 points (98.5% liked)
Programmer Humor
32739 readers
1041 users here now
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
Rules
- Keep content in english
- No advertisements
- Posts must be related to programming or programmer topics
founded 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I've used Vim, NeoVim, Micro,
mg(1), JOE, and even MS Edit (both the original DOS version and the recent Rust clone). No matter how complex and tailored I wrote my config, though, the features I actually used were included in GNU nano and/or my command shell without any of the bugs, bloat, learning curve, or slop.Using it as my default just makes sense.
DOS edit was just an alias to qbasic /edit packaged in a .com
Nano is great for editing files. It is absolutely terrible for any amount of text processing or anything other than raw code copied from a tutorial
You guys do text processing on terminal editors?
was gonna say, I have IDEs and other dedicated programs for that
Of course. What do you think vim users do?
Fuck all? ;-)
Alternative joke: try to figure out how to exit
What sort of text processing? I rarely do this, so I usually just rely on things like
sed,ed,sort,uniq, and other shell commands to handle this.