Stack Overflow: Helping One Million Developers Exit Vim (2017)
91–100 of 149 posts
Re: Stack Overflow: Helping One Million Developers Exit Vim (2017)
#92Re: Stack Overflow: Helping One Million Developers Exit Vim (2017)
#93Why is this such an issue? It is no harder exiting vim than it is exiting plain old vi, nvi or any other vi clone. In fact, the very same keystrokes that you use for exiting vi can be used in vim as well.
or ed! Wait, I don't think I'm helping your case.
Re: Stack Overflow: Helping One Million Developers Exit Vim (2017)
#94kill -9 `pidof vim` Also, whoever decided to have vim as the default editor in the windows port of git.. this is brain damaged . Just use notepad already!
Linus designed it for himself and for kernel development. This still shows. I don't think he ever intended it to be used outside of Linux development, maybe not even for long there.
I wouldn't be surprised if he expected people to run with the concept and develop their own tools. But inertia and hype prevailed and now we are stuck with a poorly designed UI.
Re: Stack Overflow: Helping One Million Developers Exit Vim (2017)
#95Whenever I end up on another computer without my environment setup and end up in nano because it is the default, it always takes me a while. There is the cheat sheet at the bottom but as soon as the text appears I'll start manipulating it using vim keybindings and delete things and whatever else randomly. I always assume my fingers were not on the homerow correctly or something first. It is very disorienting. So I im…
Re: Stack Overflow: Helping One Million Developers Exit Vim (2017)
#96https://www.ihaveapc.com/wp-content/uploads/2011/08/emacs_le...
Re: Stack Overflow: Helping One Million Developers Exit Vim (2017)
#97Only thise morning I was not even able to exit by using q! either. I did something good in my life or parents that some random keys hitting made me to exit it.
Re: Stack Overflow: Helping One Million Developers Exit Vim (2017)
#98What's all this stuff about colon keys and enter? Just ZQ (without saving) or ZZ (to save) :)
Re: Stack Overflow: Helping One Million Developers Exit Vim (2017)
#99Here’s the proper fix. In your .bashrc, or wherever: export EDITOR= anything but vim >
Or just learn the very basics of the program: Ins to write Esc to enter command mode Shift+V while in cmd mode to select lines, d to cut or y to copy selected lines. p to paste. u in cmd mode to undo, ctrl+r to redo. :q! to quit and discard changes when in cmd mode. :qw to quit and write changes :w to write changes and no exit. It aint that hard really, once you get the hang of it :) - And then I would suggest changi…
Re: Stack Overflow: Helping One Million Developers Exit Vim (2017)
#100I really love my vim bindings, I try to use them everywhere possible. So far that is: Web browser: Vimium plugin (Chrome) Music player: Cmus Terminal multiplexer: Tmux & Screen Terminal pager: GNU Less I'm still trying to figure out how best to use vim bindings in my z-shell (zsh) and ipython interactive sessions.