From e071545d36d912a951a2a071db23490fb77ca0e3 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Tue, 16 May 2017 18:07:07 +0200 Subject: [PATCH] ui/doom: add docstrings for blink-cursor funcs --- modules/ui/doom/config.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/ui/doom/config.el b/modules/ui/doom/config.el index eb1dc93ed..fe14bd5fc 100644 --- a/modules/ui/doom/config.el +++ b/modules/ui/doom/config.el @@ -100,7 +100,7 @@ :commands nav-flash-show :init (defun doom*blink-cursor-maybe (orig-fn &rest args) - "Blink line, to keep track of the cursor." + "Blink current line if the window has moved." (interactive) (let ((point (save-excursion (goto-char (window-start)) (point-marker)))) @@ -111,6 +111,7 @@ (doom/blink-cursor)))) (defun doom/blink-cursor (&rest _) + "Blink current line using `nav-flash'." (interactive) (unless (minibufferp) (nav-flash-show)