]> git.r.bdr.sh - rbdr/nota.nvim/blame - lua/learning.lua
Add basic structure
[rbdr/nota.nvim] / lua / learning.lua
CommitLineData
56292c79
RBR
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
10function open_learning(configuration)
11 error("Not yet implemented")
12end
13
14--- Capture a learning entry
15-- @param configuration tNotaConfiguration the plugin configuration
16function capture_learning(configuration)
17 error("Not yet implemented")
18end
19
20-------------------------------------------------------------------------------
21-- Internal Functions
22-------------------------------------------------------------------------------