this post was submitted on 25 Oct 2023
2263 points (99.1% liked)

Programmer Humor

31800 readers
309 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 

I'm trying out Obsidian for taking notes, and this made me laugh.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 8 points 10 months ago (4 children)

:wq will save and then exit, while :x will save only if the file has been modified and then exit, and then there's ZZ that does the same as :x, plus there are probably others:-)

[–] [email protected] 17 points 10 months ago

The question specifically asked for "the command to quit Vim without saving"

[–] [email protected] 8 points 10 months ago (1 children)

They explicitly ask for the one that quits without saving, so I'd say :q! is the obvious choice

[–] [email protected] 1 points 10 months ago

I agree that it's the most obvious choice, but it also doesn't work when there are hidden buffers open. :qa! and :cq should always work so they are arguably more correct

[–] [email protected] 6 points 10 months ago

Which means none of those are valid? Since this is specifically "quit without saving"

[–] [email protected] 3 points 10 months ago