Coders or lemmy, what editors do you use? Is it worth learning a new one?
-
-
I use emacs when on my personal machines. VS Code at work.
The fastest tool is the one you are best at using. I find that my tool doesn't make me fast, my ability to solve issues makes me fast. I very rarely learn a new tool unless it accomplishes something for me my other tools do not.
For example, at work I use windows and regularly ssh to servers. My entire job is spent ssh'd into other servers. Emacs terminal emulator is spotty at best when using ssh on windows. There are ways to make it work, but some modifications get flagged by our SEIMs. So in that case I use vs code, and the ssh remote connection options and split terminal interface.
At home I use emacs. I have all Linux machines so my terminal plays nicely. I also am working on reducing my RSI from years of tech work. The less mousing I have to do, the better. Emacs allows me to keep my hands on my keyboard.
-
I used to use VSCodium, but in my quest to touch the mouse as little as possible I switched to Neovim.
-
I've mostly just tweaked the configuration and built my own comment formatter/reflow command based on the comment style at work.
It's almost more about what it doesn't have for me, because what I've run into a lot with trying newer editors is they try and manage the code too much and the code base at work has its own style guide that doesn't match what the editor tries to do. So the editor might make me slightly more productive ... until I find myself fighting with it every 3 lines because of auto formatting or some language server quirk.
-
I use Lapce, which could be a great native alternative to VS-Code
(Also it's built with Rust, this is for the Rustaceans) -
Did you mean Visual Studio the second time?
-
I left a comment before but I thought I'd address the concerns around modal editing. It's not as hard as it seems, once you wrap your head around hjkl you'll be fine.
Use Lazyvim to get started and install the vim plugin in vscode. Try it qutebrowser too you won't look back honestly.
Consider helix too, it works out of the box but the keys are slightly different to Vim which makes it challenging for me.
-
I use VSCodium atm.
-
Neovim genuinely makes me happy. I love it to bits.
-
this, evil is the real 4th generation vi
-
vscodium. Easy to use for beginners (i'm a beginner too), fully open-source, all microsoft tracking binaries removed. Aviable for Windows, Linux, macOS, darwin, propably bsd, or even as a webview, and supports a lot of architectures. Great for intrepeted languages, but supports compiled ones too
-
Zed, Helix, and VSCodium for the Windows side.
-
Helix because it's easy to setup and hassle free, and it runs well on my 2009 ASUS Eee
-
vscodium and neovim extension
-
i really wonder why mousepads sucks
-
-
I've tried it briefly, but didn't like it/did not find an intuitive or preferred way into it.
-
I'm using helix with arrows. On a standard layout its not so great, but on my main keyboard I have a layer with arrow keys near hjkl. So I can use that on all software even on my BÉPO (DVORAC like) layout.
-
I've been using Vim for over 10 years. The first few years I used it badly. Later I took time to really learn it. Now I can use it fairly decently, but I still learn new things every now and then.
It feels like a really good investment. It's been around forever, it's gonna be around forever, it's installed on almost all computers, and you're going to be forced to use it at some point or another.
I really enjoy being able to go to any computer and starting up a familiar editor, without installing or configuring stuff. I also use a very vanilla Vim. If a coworker's laptop or some server has a different Vim config than mine, I can usually do
vim -u NONE
to get back to a familiar place.