First thing: The ":wq" search brings back "wq" results as well, so the results contain any instance of wq (crypto libraries, android kernel, variable names, wq.io framework, etc.) rather than just accidental vim writes.
Second thing: Most all of the ":wq" are in redundant bogus files, many authors knowingly leaving the accidental insertion in. "asdfasdfasdf:wq"
Edit: 6 million of the 7 millions results are in C language - mostly all variable names and library names. In actuality, it seems like only the first 34 pages have any relevant results.
Even if the author forgot to escape insertion mode before issuing the command, they would have realized that vim did not close and that a new line was created.
Anyone jumping on the "this is why vim sux" bandwagon here is biased or incompetent. If this was really an issue for individuals, they could just configure a key combination to to save no matter what mode your in.
HN seems to be becoming pedantic and ignorant in many ways.
What really rustles my jimmies is these posts in general. Who gives a shit what editor people use? We are all programmers typing text into a damn box. Who cares what kind of box? The outcome is the damn same.
And for every person who accidentally committed ":wq" I'll show you some sublime user writing python using tabs, not spaces, for spacing.
Either way, these editor posts are a waste of everyone's time. Use whatever editor you want to use... the community shouldn't bash you for it.
I wonder why people can accidentally type ":wq" in insert mode and save it. What are example use cases that make people accidentally save ":wq" document?
I often use vim and so far almost never accidentaly save ":wq" file.
I had that problem lately on a new box where "set -sg escape-time 0"[0] was not set in tmux. It feels so different and annoying I kept mashing the buttons.
This is one of the many reasons that I think it's important to develop a healthy distrust of insert mode. Staying in normal mode as much as possible also encourages good use of navigation commands.
I find :wq in my code commits more often than i like. It's most always when using IDEAVim, and I imagine it would be the same case for any other partial vim-emulator. For some reason, I'm just more prone to not hitting the escape sequence correctly in those editors.
You use that command in Vim to save and exit the file. But as a modal editor, if you're in insert mode, you'll type it into the file as text instead of a command, thus the search here.
It's the method of saving and exiting a text file in Vim. ':' enters command input mode, 'w' writes to disk and 'q' quits the program. These people mistakenly typed and saved it in non-vim-edited text files.
https://github.com/search?q=%18%03&type=Code&ref=searchresul...