]> git.r.bdr.sh - rbdr/nota.nvim/blobdiff - lua/notes.lua
Add tagging
[rbdr/nota.nvim] / lua / notes.lua
index 008baac1c148fb5d1df182a3974061a42a53ba32..b23d6df9002d09fc992c401668cd81bbdb49aa7b 100644 (file)
@@ -36,8 +36,11 @@ end
 -------------------------------------------------------------------------------
 
 --- Opens the daily note
-function Notes.open_daily()
-  local filename = os.date('%Y-%m-%d') .. '.md'
+function Notes.open_daily(date)
+  if not date or date == '' then
+    date = os.date('%Y-%m-%d')
+  end
+  local filename =  date .. '.md'
   open_periodic_note('daily', filename)
 end