this post was submitted on 08 Apr 2024
946 points (98.1% liked)
Programmer Humor
19589 readers
2168 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 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I refuse to see how vim and emacs is worth learning. I only use it because that's the only option when editing server files. Beyond this, I couldn't imagine coding in these environments from scratch.
The biggest benefit of (neo)vim is the motions.
Honestly if you don't use vim motions in your ide of choice, you're missing out big time. Being able to do things like "Delete everything inside these parentheses". di( or "wrap this line and the two lines below in a pair of {}" ys2j{ , or "swap this parameter with the next one" cxia]a. with a single shortcut is game changing.
Even just being able to repeat an action a number of times is ridiculously useful. I use relative line numbers, so I can see how many lines away a target is and just go "I need to move down 17 lines" and hit 17j.
Absolutely insane how much quicker it is too do stuff with vim motions than ctrl-shift-arrows and the like.
Honestly those things just don't sound like common enough actions to be worth shaving 0.5 seconds off. How often do you know exactly how many lines to move a line by? And how often do you even need to move a line that far?
I still don't buy it.
Not "move the current line of code", but instead "jump the cursor a number of lines"
Oh so like page up/down then? Not exactly showing the raw power of Vim when you can use an existing key press! 😄
I can't tell if you're trolling; Page up and page down are different from "I need to jump 10 lines down" with
10j
. Or 11 lines with11j
. Or "Delete the line I'm on and the six below it" withd6j
.They're not significantly different. Maybe it takes you 1s and me 2s. Not worth the effort of learning. Especially because Vim comes with significant downsides compared to full IDEs that will make you slower overall.
Name a downside, I'll tell you how you're probably wrong
You can't have a full integrated debug session with a watch window, locals (with an expandable tree for objects), stack, breakpoint list all visible at once. I.e. something comparable to this.
You can get pretty close to the same experience with https://github.com/mfussenegger/nvim-dap, any others?
If you consider that "pretty close" then I think you're going to dismiss anything else I say as insignificant anyway.
I do; you're only dismissing it because it's formatted differently from the exact workflow you're describing, but it's certainly just as powerful if not more so