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