]> git.r.bdr.sh - rbdr/nota.nvim/blob - lua/learning.lua
Add basic structure
[rbdr/nota.nvim] / lua / learning.lua
1 -------------------------------------------------------------------------------
2 -- Tools to deal with the learning file
3 -------------------------------------------------------------------------------
4 -------------------------------------------------------------------------------
5 -- Public Interface
6 -------------------------------------------------------------------------------
7
8 --- Opens the learning file
9 -- @param configuration tNotaConfiguration the plugin configuration
10 function open_learning(configuration)
11 error("Not yet implemented")
12 end
13
14 --- Capture a learning entry
15 -- @param configuration tNotaConfiguration the plugin configuration
16 function capture_learning(configuration)
17 error("Not yet implemented")
18 end
19
20 -------------------------------------------------------------------------------
21 -- Internal Functions
22 -------------------------------------------------------------------------------