Including Emacs diary entries in Howm menu
⚠️ Note that this doesn’t work properly. There’s a “nil” at the end. Howm has a handy menu for viewing tasks and notes. One thing I wanted to add was my Emacs diary entries for the current date. This took 3 things: First, I created a function for inserting the day’s entries from Emacs diary in the current buffer. (defun my/insert-diary-entries-for-today () "Insert diary entries for today at point." (interactive) (let ((diary-list-entries-hook nil) (diary-display-function 'ignore)) (let ((diary-entries (diary-list-entries (calendar-current-date) 1))) (if diary-entries (dolist (entry diary-entries) (insert (cadr entry) "\n")) (message "No diary entries for today"))))) (and by “I” I mean Claude, mostly) ...