Hacker News new | ask | show | jobs
by aidenn0 1909 days ago
The one thing I love about evil-mode over vim is the smart-case text replace (%s/foo/bar will change Foo to Bar and FOO to BAR and foo to bar).

FWIW, ":set cb=unnamed,autoselect" (or "unnamedplus,autoselect") will probably do what you want in vim.

Another thing I forgot; running evil-mode in "emacs -nw" disables all setting of the clipboard, even with `"+` while a terminal vim with X11 compiled in will let you still access the clipboard. Kind of a super-niche use, but shrug.

I just tried A in visual-line mode and it was confusing. I'd never tried it before though, so never ran into that.

1 comments

The other thing that's really cool in evil-mode is the ability to use emacs-lisp in `:s`. I used this once to get a grid of random numbers: 10i0 <ESC>yy9p ggVG:s/0/\,(random 10)/g