]> git.r.bdr.sh - rbdr/nota.nvim/blame - lua/notes.lua
Add basic structure
[rbdr/nota.nvim] / lua / notes.lua
CommitLineData
56292c79
RBR
1-------------------------------------------------------------------------------
2-- Tools to deal with notes
3-------------------------------------------------------------------------------
4-------------------------------------------------------------------------------
5-- Public Interface
6-------------------------------------------------------------------------------
7
8--- Opens the daily note
9-- @param configuration tNotaConfiguration the plugin configuration
10function open_daily(configuration)
11 error("Not yet implemented")
12end
13
14--- Opens the weekly note
15-- @param configuration tNotaConfiguration the plugin configuration
16function open_weekly(configuration)
17 error("Not yet implemented")
18end
19
20--- Opens the monthly note
21-- @param configuration tNotaConfiguration the plugin configuration
22function open_monthly(configuration)
23 error("Not yet implemented")
24end
25
26--- Opens the seasonal note
27-- @param configuration tNotaConfiguration the plugin configuration
28function open_seasonal(configuration)
29 error("Not yet implemented")
30end
31
32--- Opens the yearly note
33-- @param configuration tNotaConfiguration the plugin configuration
34function open_yearly(configuration)
35 error("Not yet implemented")
36end
37
38--- Opens an arbitrary note
39-- @param configuration tNotaConfiguration the plugin configuration
40function open_note(configuration)
41 error("Not yet implemented")
42end
43
44-------------------------------------------------------------------------------
45-- Internal Functions
46-------------------------------------------------------------------------------