]> git.r.bdr.sh - rbdr/nota.nvim/blame - lua/plan.lua
Add basic structure
[rbdr/nota.nvim] / lua / plan.lua
CommitLineData
56292c79
RBR
1-------------------------------------------------------------------------------
2-- Tools to deal with the plan file
3-------------------------------------------------------------------------------
4-------------------------------------------------------------------------------
5-- Public Interface
6-------------------------------------------------------------------------------
7
8--- Opens the active plan file
9-- @param configuration tNotaConfiguration the plugin configuration
10function open_plan(configuration)
11 error("Not yet implemented")
12end
13
14--- Capture a new plan file and archive the current one
15-- @param configuration tNotaConfiguration the plugin configuration
16function capture_plan(configuration)
17 error("Not yet implemented")
18end
19
20-------------------------------------------------------------------------------
21-- Internal Functions
22-------------------------------------------------------------------------------
23