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

Programmer Humor

19197 readers
965 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] 16 points 5 months ago (4 children)

sit your wife down in front of vim, and make her use it.

It'll make more sense immediately.

If not, divorce.

[–] [email protected] 7 points 5 months ago (3 children)

Divorce

Makes sense: Even a marriage is easier to exit than Vim

[–] [email protected] 2 points 5 months ago (1 children)

I just dipped my feet in Vim yesterday, I found it not intuitive at all. :wq! To exit a read only file? I’m too dumb to think of syntax like that!

[–] [email protected] 2 points 5 months ago* (last edited 5 months ago)

: is your commandline, it does a lot of actions. w is write, q is quit. So you're doing a write quit, the ! just tells it to fuck off and do the fucking command essentially.

If you open a read only file, and you need to quit just hit it with the :q! or if you haven't made any changes, :q will work just fine.

naturally, as one would expect, you can hit all of these independently. :w just writes changes, :q will close as aforementioned.

load more comments (1 replies)
load more comments (1 replies)