this post was submitted on 20 May 2026
81 points (97.6% liked)

Linux

65422 readers
306 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 7 years ago
MODERATORS
 

Do you use vim as your default text editor? If you do not, have you ever been in a situation you could do nothing but use vim?

you are viewing a single comment's thread
view the rest of the comments
[–] AstroLightz@lemmy.world 4 points 1 day ago (1 children)

For quick edits in the terminal? Sure.

As my main IDE? No way. I'm too used to GUI IDEs like VSCodium and PyCharm.

I just find it easier to navigate with a mouse. With just keyboard, I find I overshoot the block of code I'm looking for, whereas scroll wheel gives me more control.

[–] olafurp@lemmy.world 1 points 1 day ago

} jump forward to next empty line is really quick for navigating, also if you know the identifier then /myVarnnnn is much faster than scrolling and gets you ready to edit. Otherwise 5j;;;; also works of course.