Function: smart-todotxt-assist
smart-todotxt-assist is an interactive and byte-compiled function
defined in hui-mouse.el.
Signature
(smart-todotxt-assist)
Documentation
Use a single assist key or mouse assist key to manipulate todotxt items.
If key is pressed:
(1) at the end of buffer, archive completed items
(2) on a todo item, edit it
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-mouse.el
(defun smart-todotxt-assist ()
"Use a single assist key or mouse assist key to manipulate `todotxt' items.
If key is pressed:
(1) at the end of buffer, archive completed items
(2) on a todo item, edit it"
(interactive)
(cond ((smart-eobp) (todotxt-archive))
(t (todotxt-edit-item))))