]> git.r.bdr.sh - rbdr/nota.nvim/blob - lua/notes.lua
Add basic structure
[rbdr/nota.nvim] / lua / notes.lua
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
10 function open_daily(configuration)
11 error("Not yet implemented")
12 end
13
14 --- Opens the weekly note
15 -- @param configuration tNotaConfiguration the plugin configuration
16 function open_weekly(configuration)
17 error("Not yet implemented")
18 end
19
20 --- Opens the monthly note
21 -- @param configuration tNotaConfiguration the plugin configuration
22 function open_monthly(configuration)
23 error("Not yet implemented")
24 end
25
26 --- Opens the seasonal note
27 -- @param configuration tNotaConfiguration the plugin configuration
28 function open_seasonal(configuration)
29 error("Not yet implemented")
30 end
31
32 --- Opens the yearly note
33 -- @param configuration tNotaConfiguration the plugin configuration
34 function open_yearly(configuration)
35 error("Not yet implemented")
36 end
37
38 --- Opens an arbitrary note
39 -- @param configuration tNotaConfiguration the plugin configuration
40 function open_note(configuration)
41 error("Not yet implemented")
42 end
43
44 -------------------------------------------------------------------------------
45 -- Internal Functions
46 -------------------------------------------------------------------------------