Created an action button to navigate to Today's date. Finding it slightly easier for one-click than navigating to it via calendar.
actionButton.define {
icon = "sun",
description = "Go to Today",
run = function()
local date = os.date("*t")
local monthNames = {"January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"}
local year = tostring(date.year)
local month = string.format("%02d", date.month)
local day = string.format("%02d", date.day)
local monthname = monthNames[date.month]
local path = "Journal/" .. year .. "/" .. month .. "-" .. monthname .. "/" .. year .. "-" .. month .. "-" .. day
editor.navigate(path)
end
}
To use, update the format to your Date format and add to CONFIG. Here format is like Journal/2026/03-March/2026-03-30