evil-kbd-macro-suppress-motion-error = t

Don't let innocuous motion errors abort the recording or playback of
macros.
This commit is contained in:
Henrik Lissner 2020-08-05 20:50:05 -04:00
parent d9fd738ba6
commit 4bed77aa3a
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -46,7 +46,10 @@ directives. By default, this only recognizes C directives.")
evil-visual-state-cursor 'hollow
;; Only do highlighting in selected window so that Emacs has less work
;; to do highlighting them all.
evil-ex-interactive-search-highlight 'selected-window)
evil-ex-interactive-search-highlight 'selected-window
;; It's infuriating that innocuous "beginning of line" or "end of line"
;; errors will abort macros, so suppress them:
evil-kbd-macro-suppress-motion-error t)
;; Slow this down from 0.02 to prevent blocking in large or folded buffers
;; like magit while incrementally highlighting matches.