Earlier quoted context omitted.
I'm interested to hear why you're using evil-mode instead of vim if that's how you feel. I'm using vim with slimv for Lisp hacking at the moment and I have to admit that there are some whoopsies, but not enough to make me learn to use a whole new editor :)
Well, rant and occasional surprise aside, I've found evil-mode to truly be a better implementation of vi than vim itself, at least where it concerns me (as formerly a pretty advanced vim user and plugin developer, it took me some adapting to stop using all the ex vim idioms and the like.) It's faster to handle big files and execute macros, overall snappier and has a profoundly better %s///g with real time preview. I…
Remove Ex-Mode from Neovim
111–120 of 123 posts
Re: Remove Ex-Mode from Neovim
#112Earlier quoted context omitted.
Yea, I finally got fed up one day and put nnoremap Q in my .vimrc. No more "how did I get HERE?"
I usually record my throwaway macros to q (because hitting qq is so easy), so I've bound Q to 'call the most recently defined macro'. I would post something to put in your .vimrc, but I use the vim emulator evil-mode in Emacs. This way, I can skip the awkward @q step, and keep hitting Q instead of @@ to re-run the macro.
Re: Remove Ex-Mode from Neovim
#113Re: Remove Ex-Mode from Neovim
#114Earlier quoted context omitted.
I usually record my throwaway macros to q (because hitting qq is so easy), so I've bound Q to 'call the most recently defined macro'. I would post something to put in your .vimrc, but I use the vim emulator evil-mode in Emacs. This way, I can skip the awkward @q step, and keep hitting Q instead of @@ to re-run the macro.
How do you call the most recently defined macro? I just have Q bound to @q, but if I could make it more general that would be awesome.
Re: Remove Ex-Mode from Neovim
#115Hadn't heard of nvim until today. Can anyone sell me on this project? I looked at the homepage and README, but they're both pretty hand-wavey. What problems does nvim solve for experienced vim users?
Re: Remove Ex-Mode from Neovim
#116Earlier quoted context omitted.
I use for this. It's very gratifying, mashing the spacebar to repeat a macro.
using space for the leader is one thing that I absolutely love... I was using , for it but space is so much easier and nicer to use. you are not limited to one finger to start the leader command so it makes both sides of the keyboard nice to use for leader chords. it only took about a week to retrain myself for it. here's the command... put it at the top of your vimrc before anything else so it works with your plugin…
Re: Remove Ex-Mode from Neovim
#117Earlier quoted context omitted.
More like IE3. Nobody uses ex mode.
It's not true. Some still uses it extensively in the case of editing the last commands. But there is alternative way. I am happy that they will remove this mode in the future :)
That gives you a buffer you can look through previous commands and use normal-mode commands to edit them.
Also, you don't need Ex mode to edit last commands. You can just press Up from cmdline.
Re: Remove Ex-Mode from Neovim
#118Ugh. Some awful distributions remove ed(1) by default, when that happens, I use vi's ex mode as a substitute. Now these people want to remove that too, amazing. I can only hope this vim fork never becomes the default vi on any systems I am forced to use...
https://github.com/neovim/neovim/issues/1089#issuecomment-56...
You just can't switch between ex and vi modes.
Re: Remove Ex-Mode from Neovim
#119Earlier quoted context omitted.
You want to change the name from neovim because they want to remove functionality that I'm guessing maybe 1% of the users use regularly. Even though for 99%, neovim is vim only modernized and cleaned up. It's illogical as you're doing a disservice to the users, and neovim is a clear name that describes what it is. New vim.
- It is a fork of Vim. - It is omitting some features. - It is adding a number of high level features. - It will not be fully backwards compatible. Prefixing 'new' to the name of the forked project is as lazy as it can get [1]. 'Neo' is one step from that. Vim itself wouldn't be a good name if it was just meaning "Vi iMproved", but 'Vim' is also a dictionary word meaning "energy; enthusiasm". A positive dictionary wo…
But I like your idea. Something like Vittle as a whittled-down version of vim.
Re: Remove Ex-Mode from Neovim
#120Earlier quoted context omitted.
aka "Oh, that's the key I have been hitting by accident"
Yea, I finally got fed up one day and put nnoremap Q in my .vimrc. No more "how did I get HERE?"