0

Why can't I see this "animation"? I only see the end result. This function is invoked via a keyboard shortcut on a elfeed-search buffer.

(defun my/elfeed-extra-info-2 ()
  (interactive)
  (next-line)
  (sleep-for 0.5)
  (next-line)
  (sleep-for 0.5)
  (next-line)
)
american-ninja-warrior
  • 3,903
  • 2
  • 24
  • 44

1 Answers1

0

Try swapping sleep-for with sit-for

Like they do it at dantorop.info/project/emacs-animation/lisp2.html

american-ninja-warrior
  • 3,903
  • 2
  • 24
  • 44