X-Git-Url: https://git.r.bdr.sh/rbdr/nota.nvim/blobdiff_plain/56292c7915662bbf721ca8c3d2cee6a04134a9c6..HEAD:/lua/notes.lua diff --git a/lua/notes.lua b/lua/notes.lua deleted file mode 100644 index acffc25..0000000 --- a/lua/notes.lua +++ /dev/null @@ -1,46 +0,0 @@ -------------------------------------------------------------------------------- --- Tools to deal with notes -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- --- Public Interface -------------------------------------------------------------------------------- - ---- Opens the daily note --- @param configuration tNotaConfiguration the plugin configuration -function open_daily(configuration) - error("Not yet implemented") -end - ---- Opens the weekly note --- @param configuration tNotaConfiguration the plugin configuration -function open_weekly(configuration) - error("Not yet implemented") -end - ---- Opens the monthly note --- @param configuration tNotaConfiguration the plugin configuration -function open_monthly(configuration) - error("Not yet implemented") -end - ---- Opens the seasonal note --- @param configuration tNotaConfiguration the plugin configuration -function open_seasonal(configuration) - error("Not yet implemented") -end - ---- Opens the yearly note --- @param configuration tNotaConfiguration the plugin configuration -function open_yearly(configuration) - error("Not yet implemented") -end - ---- Opens an arbitrary note --- @param configuration tNotaConfiguration the plugin configuration -function open_note(configuration) - error("Not yet implemented") -end - -------------------------------------------------------------------------------- --- Internal Functions --------------------------------------------------------------------------------