I assume somebody thought this was funny?
How to Exit Vim
11–20 of 25 posts
Re: How to Exit Vim
#12Re: How to Exit Vim
#13Modal editing is fundamentally-insane UX.
Re: How to Exit Vim
#14Earlier quoted context omitted.
I guess. It is non-ideal how unintuitive it is to exit vim, but esc-esc-q-! is really not that complicated.
I feel like you're missing a few esc's and a colon in there...
Re: How to Exit Vim
#15Modal editing is fundamentally-insane UX.
:q! works in command mode, but obviously not in insert mode. :q! works in insert mode and incidentally also in command mode, but not in ex mode (extended command mode)! And so on, a longer and longer command is built that neutralises the current mode and whatever side effects that the key combo itself causes.
Re: How to Exit Vim
#16I assume somebody thought this was funny?
There's this subculture in the computer world, the pinnacle of which is arguably still Eric Raymond's Jargon File (http://catb.org/jargon/html/) which I could never connect with it.
Re: How to Exit Vim
#17I assume somebody thought this was funny?
Re: How to Exit Vim
#18Modal editing is fundamentally-insane UX.
Re: How to Exit Vim
#19I assume somebody thought this was funny?
So, yes.
Re: How to Exit Vim
#20Earlier quoted context omitted.
I feel like you're missing a few esc's and a colon in there...
zz? Only one esc, but definitely a colon. vim is weird. Works for me, but I understand it’s not suitable for everyone’s tastes.