this post was submitted on 25 Dec 2023
648 points (100.0% liked)
196
16440 readers
1524 users here now
Be sure to follow the rule before you head out.
Rule: You must post before you leave.
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
Even not being a vim wizard, editing code without vim keybindings feels... slow.
Yeah, I could grab the mouse, highlight everything between the arguments to a function and hit delete. Or I could just go to the open paren and just hit
d%
. I could grab the mouse, highlight the line and hit delete, or I could literally just typedd
.And trying to edit things in nano is positively masochistic.
di(
Why would someone edit the actual code (not configs) from the terminal? That by itself sounds like a masochistic endeavor. But I might be missing something.
I used to do it more back in college where I'd ssh into the schools computers to work on assignments. It's still sometimes useful if you're in the console and want to edit something quickly.
However, there's e.g. macvim and gvim which are literally just vim in a gui; they give you menus and the ability to drag panes and click to move your cursor. With a decent LSP setup they can actually be pretty nice.
And most other decent editors have vim emulation of various quality levels. Emacs is a bit buggy, but it's really useful if you want to code in agda or clojure. And VS Code has fairly decent vim emulation.
I see, thank you for clarification!