Extend nav-flash-face to edge of window in Emacs 27

This commit is contained in:
Henrik Lissner 2020-04-18 20:28:03 -04:00
parent 09f617de8b
commit d5f83d7123
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -5,6 +5,10 @@
org-find-file org-find-file-at-mouse)
"A list of commands that should not trigger nav-flash.")
;;
;;; Packages
(use-package! nav-flash
:defer t
:init
@ -30,4 +34,7 @@
(advice-add #'evil-window-bottom :after #'+nav-flash-blink-cursor-a)
;; Bound to `ga' for evil users
(advice-add #'what-cursor-position :after #'+nav-flash-blink-cursor-a))
(advice-add #'what-cursor-position :after #'+nav-flash-blink-cursor-a)
:config
(if EMACS27+ (set-face-extend 'nav-flash-face t)))