mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
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:
@ -46,7 +46,10 @@ directives. By default, this only recognizes C directives.")
|
|||||||
evil-visual-state-cursor 'hollow
|
evil-visual-state-cursor 'hollow
|
||||||
;; Only do highlighting in selected window so that Emacs has less work
|
;; Only do highlighting in selected window so that Emacs has less work
|
||||||
;; to do highlighting them all.
|
;; 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
|
;; Slow this down from 0.02 to prevent blocking in large or folded buffers
|
||||||
;; like magit while incrementally highlighting matches.
|
;; like magit while incrementally highlighting matches.
|
||||||
|
Reference in New Issue
Block a user