this post was submitted on 25 Oct 2023
2235 points (99.2% liked)
Programmer Humor
32361 readers
966 users here now
Post funny things about programming here! (Or just rant about your favourite programming language.)
Rules:
- Posts must be relevant to programming, programmers, or computer science.
- No NSFW content.
- Jokes must be in good taste. No hate speech, bigotry, etc.
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I'm honestly not super familiar with vim. I tried :q! and it accepted it, what are some other ways?
:q :3
Average furry programmer
Halfway true :3 I'm only a professional programmer which is why I attend in professional work fashion like thigh highs and arm warmers instead of fursuits. I'm more the stereotypical femboy programmer. Pre-edit: am i really just average 3,:
Okay, you are a very cool and sweet femboy programmer :)
Ah, unfortunately it only asks you this question the first time you try it.
!
E37: No write since last change (add ! to override)
:quit!
,:qa!
,ZQ
Ah, thanks for
ZQ
. I only knewZZ
, alternative to:x
.:!killall vim
: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:-)
The question specifically asked for "the command to quit Vim without saving"
They explicitly ask for the one that quits without saving, so I'd say :q! is the obvious choice
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
Which means none of those are valid? Since this is specifically "quit without saving"
This guy vims