this post was submitted on 04 Jul 2023
26 points (100.0% liked)

linuxmemes

20417 readers
1808 users here now

I use Arch btw


Sister communities:

Community rules

  1. Follow the site-wide rules and code of conduct
  2. Be civil
  3. Post Linux-related content
  4. No recent reposts

Please report posts and comments that break these rules!

founded 1 year ago
MODERATORS
 
top 10 comments
sorted by: hot top controversial new old
[–] Sentinian@lemmy.one 2 points 1 year ago (1 children)

Memes like this always make we wonder the original version of it. I am dying to know the original context of why the father doesn't want the boyfriend to pull out

[–] racketlauncher831@lemmy.ml 3 points 1 year ago

The father didn't believe the boy's claim and dared him to demonstrate exiting Vim without pulling out the power cable that night.

[–] astraeus@programming.dev 1 points 1 year ago

The same cannot be said about nano

[–] QuazarOmega@lemmy.world 1 points 1 year ago

Type :q! to pull out

[–] veng@lemmy.world 1 points 1 year ago* (last edited 1 year ago) (1 children)

I've used vim for so many years now that it blows my mind when people act like it's difficult to use.

The same thing with installing Arch and even Gentoo .. if you've got good experience with something like redhat/centos and can read documentation it's a breeze.

[–] xtapa@feddit.de 1 points 1 year ago

What? A task gets easier the more experience you got with it? I think you're in for a Nobel price or something.

[–] Dianoga@midwest.social 0 points 1 year ago (1 children)

I think quitting vim is the only thing I know how to do with it

[–] tal@kbin.social 1 points 1 year ago (1 children)

I'm on the emacs side of things, but knowing at least the bare minimum of vim is handy, because I have run into into systems (usually very small systems like routers or something) where some vi variant is available and nothing else is. Though as systems get bigger, it has become more the norm to have at least nano also available.

I'd know at least this:

  • i to enter insert mode. Then you can edit as in a non-modal editor.

  • Esc to exit insert mode and go back to normal mode.

  • h, j, k, l move left, down, up, and right. The fingers under your right hand on a QWERTY keyboard.

  • / to start a regex search

  • % and then SRC/REPLACEMENT to do a regex replacement.

  • :q to exit without saving changes.

  • :wq to save and exit.

That's enough to perform a couple of small edits or something if need be.

[–] russjr08@outpost.zeuslink.net 1 points 1 year ago (1 children)

Also another important one is :q! if you want to quit without saving changes, though vim will remind you if you leave off the ! in case you forget.

[–] sneezy@lemm.ee 1 points 1 year ago

Fun fact, you can also press ZQ in normal mode to exit without saving.