Variable: calendar-today-visible-hook

calendar-today-visible-hook is a customizable variable defined in calendar.el.gz.

Value

(org-roam-dailies-calendar-mark-entries)

Documentation

List of functions called whenever the current date is visible.

To mark today's date, add the function calendar-mark-today. To replace the date with asterisks, add the function calendar-star-date. See also calendar-today-invisible-hook.

In general, be careful about changing characters in the calendar buffer, since it may cause the movement commands to fail.

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/calendar.el.gz
(defcustom calendar-today-visible-hook nil
  "List of functions called whenever the current date is visible.
To mark today's date, add the function `calendar-mark-today'.
To replace the date with asterisks, add the function `calendar-star-date'.
See also `calendar-today-invisible-hook'.

In general, be careful about changing characters in the calendar buffer,
since it may cause the movement commands to fail."
  :type 'hook
  :options '(calendar-mark-today calendar-star-date)
  :group 'calendar-hooks)