Hacker News new | ask | show | jobs
by reayn 1520 days ago
Pressing ZQ in insert mode also provides the same effect!
2 comments

Actually, it doesn’t. ZQ is the same as :q! which quits without saving with a 0 exit code. So all of your git branches get deleted in this example, since you left the file as it was. You definitely want :cq here.
In normal mode, not insert mode. ZQ in insert mode inserts ZQ.
Oh my bad, i had a bit of a stroke writing my comment lol.