this post was submitted on 09 Aug 2026
298 points (97.5% liked)
Programmer Humor
32730 readers
1626 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
It's there and it's easy. Most people don't use terminal text editors unless they are SSHing in a server, and they would only do that sporadically, so it makes no sense to become proficient in a complex text editor like vim or Emacs for that little use case.
Sidenote: personally, I learned vim once, and used it extensively every day for two years. I stopped using it for one year and was back to square one. Now I use vscode for everything... Even when I'm using SSH, because vscode supports SSH
I use kate for almost everything. I can open and edit files over sftp, and it has a terminal like vscode as well. I should try vscode again, it's been a while.
Konqueror was the goat. Split screens. Browse the web. Browse remote directories. Browse local directories. I was sad when it went away.
I only use terminal text editors anymore when I need to edit config files à la
sudo nano. I just don't trust visual text editors to do that stuff, I've been burned too many times in the past. Files "saving" but not actually saving. Files actually corrupting or changing ownership on save. Etc. Good old nano, doesn't fuck with the critical system files any more than I already am.It’s kind of sad that many people don’t use the shell / terminal anymore, especially as part of their regular development flow. There’s so much scripting and so many shell commands you can use that will do things you just can’t do in vscode. And having an editor like vi immediately available is part of that flow.
For me, vim and the shell are my primary IDE. I rarely fire up vscode. But I guess I’m getting old. Still faster than the younger devs who mainly use vscode and then struggle when they are forced to use the command line due to whatever circumstance where vscode is not available or appropriate. Kind of makes me sad. Feels like a valuable skill is being lost.
Vscode has terminal built in too
Oh, I use the terminal a lot, it doesn't throw me off. When I can't have vscode (e.g. small openwrt devices) I can use vim. It's just plain easier to use vscode for editing files when I can
I used vim, vim based stuffs, spacemacs, jetbrains, netbeans, atom etc... Now I use mainly claude code, sometimes, rarely I also open vscode. Shame because I know a lot of shortcuts, but not needed.
Every editor "supports" SSH, you can mount files on a remote SSH server via SSHFS.
And instead vscode supports SSH (without quotes), you can connect to an SSH host, and it will open files and folders on the host like it does locally. And if you open the integrated terminal it will run on the remote host. And it will forward the git login agent so you can commit or push with the credentials of your local machine. And it can forward ports from the remote.
Sure, but none of that is special in any way. That's just what SSH does already. If you like that to happen in your editor GUI, by all means, you do you.
What I'm saying is not a single of those features is an accomplishment of vscode and you can do that with every editor you like, or even without any. I didn't want people to believe they'd need to switch to vscode to achieve any of that. That was my angle.
I can't and I'm not going to comment on the integration or the workflow, if you're the audience for those kinda things, it's probably great, give vscode a try. It's probably obvious that I am not but hey, different strokes and all.
By the way, regarding integration, I just learned from a colleague last week that he uses emacs for editing remote files too. You can just open a file as:
/method:user@host:filename, with method being ssh or ftp for examplehttps://www.gnu.org/software/emacs/manual/html_node/emacs/Remote-Files.html
I always forget that vscode can do that