summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-10-05 08:33:36 -0500
committerCase Duckworth2021-10-05 08:33:36 -0500
commitd8d2f5d06db7a9a9eded187e7bc7a110ff3aa56a (patch)
tree89733fcdff81b73b77ac5675fab68d06d1f6ba14 /init.el
parentCorrect percentage display in modeline (diff)
downloademacs-d8d2f5d06db7a9a9eded187e7bc7a110ff3aa56a.tar.gz
emacs-d8d2f5d06db7a9a9eded187e7bc7a110ff3aa56a.zip
Add lines to pulse
Diffstat (limited to 'init.el')
-rw-r--r--init.el11
1 files changed, 6 insertions, 5 deletions
diff --git a/init.el b/init.el index a810370..106393d 100644 --- a/init.el +++ b/init.el
@@ -737,11 +737,12 @@ specific to most general, they are these:
737 "Pulse the current line." 737 "Pulse the current line."
738 (pulse-momentary-highlight-one-line (point))) 738 (pulse-momentary-highlight-one-line (point)))
739 739
740 (dolist (command '(scroll-up-command 740 (dolist (func '(scroll-up-command
741 scroll-down-command 741 scroll-down-command
742 recenter-top-bottom other-window 742 recenter-top-bottom other-window
743 switch-to-buffer)) 743 switch-to-buffer
744 (advice-add command :after #'pulse-line))) 744 redraw-frame))
745 (advice-add func :after #'pulse-line)))
745 746
746(setup re-builder 747(setup re-builder
747 (require 'acdw-re) 748 (require 'acdw-re)