this post was submitted on 08 Apr 2024
947 points (98.1% liked)

Programmer Humor

19729 readers
113 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

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 41 points 7 months ago (71 children)

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.

[–] Hexarei 44 points 7 months ago (29 children)

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.

[–] FizzyOrange 42 points 7 months ago (18 children)

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.

[–] Hexarei 2 points 7 months ago (1 children)

Not "move the current line of code", but instead "jump the cursor a number of lines"

[–] FizzyOrange -2 points 7 months ago (1 children)

Oh so like page up/down then? Not exactly showing the raw power of Vim when you can use an existing key press! 😄

[–] Hexarei 6 points 7 months ago (1 children)

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 with 11j. Or "Delete the line I'm on and the six below it" with d6j.

[–] FizzyOrange 0 points 7 months ago (1 children)

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.

[–] Hexarei 3 points 7 months ago (1 children)

Name a downside, I'll tell you how you're probably wrong

[–] FizzyOrange 0 points 7 months ago (1 children)

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.

[–] Hexarei 1 points 7 months ago (1 children)

You can get pretty close to the same experience with https://github.com/mfussenegger/nvim-dap, any others?

[–] FizzyOrange 0 points 7 months ago (1 children)

If you consider that "pretty close" then I think you're going to dismiss anything else I say as insignificant anyway.

[–] Hexarei 1 points 7 months ago

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

load more comments (16 replies)
load more comments (26 replies)
load more comments (67 replies)