Hacker Newsnew | past | comments | ask | show | jobs | submitlogin
[dupe] :wq (github.com/search)
54 points by rzimmerman on May 26, 2014 | hide | past | favorite | 26 comments


For you Emacs users, here's a search for Control-X Control-C.

https://github.com/search?q=%18%03&type=Code&ref=searchresul...


which obviously does produce not source files from which the poor vi users tried to escape, but binary files where the codes should be there.


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.

[0]: http://superuser.com/questions/252214/slight-delay-when-swit...


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.


Pages 34-100 of the results are all from the android linux kernel, so actually just consider relevant results to be about 1/4 the reported size.


Looks like most results up to page 34, the ":wq" was left in intentionally or the file is just bogus so the author didn't care.


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.


Sorry, I do not get it?

what is :wq ?


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.


Write and quit on vi/vim, its quite hilarious to see them actually on code :)


Happens to me all the time if I'm in an IDE for some reason.


They're showing how often coders accidentally write ":wq" in their code, which is a common command in vim (save and quit).


In vi it's save (write) then quit vi. But if you're in the wrong mode it just thinks you're typing in the file.


It writes and quits in vi(m).


Lately, I keep accidentally creating files that are named ":w" and I don't even know how I do it.


:w:w would accomplish that.


Probably by typing `:w:w`.


I know what :wq is, but what is... this?


Supposedly a listing of accidental commits of the text ":wq" and variants where the coder really meant to save the file in vim and quit.


This is the exact reason why I switched to Emacs about a year ago. Sure the transition was difficult. But never regretted it!


why not :x ?


Or ZZ.




Consider applying for YC's Summer 2026 batch! Applications are open till May 4

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: