79509637

Date: 2025-03-14 16:16:38
Score: 0.5
Natty:
Report link

Just define your own handler:

(defun visit-today-file (bookmark)
  "bookmark handler to visit the org file for today"
  (find-file (today-file)))

and use it like

("Today"
  (handler . visit-today-file)
  ;; removed for brevity
)

I also tried using a lambda function, but that crashed the bookmark list.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: René Steetskamp