This is second of three big naming convention changes. In this commit, we change the naming conventions for hook functions and variable functions: 1. Replace the bar | to indicate a hook function with a -h suffix, e.g. doom|init-ui -> doom-init-ui-h doom|run-local-var-hooks -> doom-run-local-var-hooks-h 2. And add a -fn suffix for functions meant to be set on variables, e.g. (setq magit-display-buffer-function #'+magit-display-buffer-fn) See ccf327f8 for the reasoning behind these changes.
44 lines
1.7 KiB
EmacsLisp
44 lines
1.7 KiB
EmacsLisp
;;; ui/nav-flash/autoload.el -*- lexical-binding: t; -*-
|
|
|
|
(defvar +nav-flash--last-point nil)
|
|
|
|
;;;###autoload
|
|
(defun +nav-flash-blink-cursor (&rest _)
|
|
"Blinks the current line in the current window, to make it clear where the
|
|
cursor has landed (typically after a large motion, like switching windows or
|
|
jumping to another part of the file)."
|
|
(unless (minibufferp)
|
|
(nav-flash-show)
|
|
;; only show in the current window
|
|
(overlay-put compilation-highlight-overlay 'window (selected-window))))
|
|
|
|
;;;###autoload
|
|
(defun +nav-flash-blink-cursor-maybe (&rest _)
|
|
"Like `+nav-flash-blink-cursor', but no-ops if in special-mode or term-mode,
|
|
or triggered from one of `+nav-flash-exclude-commands'."
|
|
(unless (or (derived-mode-p 'special-mode 'term-mode)
|
|
(memq this-command +nav-flash-exclude-commands)
|
|
(and (equal (point-marker) (car +nav-flash--last-point))
|
|
(equal (selected-window) (cdr +nav-flash--last-point))))
|
|
(+nav-flash-blink-cursor)
|
|
(setq +nav-flash--last-point (cons (point-marker) (selected-window)))))
|
|
|
|
;;;###autoload
|
|
(defun +nav-flash-delayed-blink-cursor-h (&rest _)
|
|
"Like `+nav-flash-blink-cursor', but links after a tiny pause, in case it
|
|
isn't clear at run-time if the point will be in the correct window/buffer (like
|
|
for `org-follow-link-hook')."
|
|
(run-at-time 0.1 nil #'+nav-flash-blink-cursor-h))
|
|
|
|
;;;###autoload
|
|
(defalias '+nav-flash-blink-cursor-h #'+nav-flash-blink-cursor)
|
|
;;;###autoload
|
|
(defalias '+nav-flash-blink-cursor-maybe-h #'+nav-flash-blink-cursor-maybe)
|
|
;;;###autoload
|
|
(defalias '+nav-flash-blink-cursor-a #'+nav-flash-blink-cursor-maybe)
|
|
|
|
;;;###autoload
|
|
(defun +nav-flash/blink-cursor (&rest _)
|
|
"Blink current line using `nav-flash'."
|
|
(interactive)
|
|
(+nav-flash-blink-cursor))
|