]> git.r.bdr.sh - rbdr/nota.nvim/blame - lua/task_views.lua
Add basic structure
[rbdr/nota.nvim] / lua / task_views.lua
CommitLineData
56292c79
RBR
1-------------------------------------------------------------------------------
2-- Tools to deal with task views
3-------------------------------------------------------------------------------
4-------------------------------------------------------------------------------
5-- Public Interface
6-------------------------------------------------------------------------------
7
8--- Opens the agenda view to show tasks
9-- @param configuration tNotaConfiguration the plugin configuration
10function open_agenda(configuration)
11 error("Not yet implemented")
12end
13
14--- Opens the view to show open tasks
15-- @param configuration tNotaConfiguration the plugin configuration
16function open_open(configuration)
17 error("Not yet implemented")
18end
19
20--- Opens the view to search the journal
21-- @param configuration tNotaConfiguration the plugin configuration
22function open_journal(configuration)
23 error("Not yet implemented")
24end
25
26-------------------------------------------------------------------------------
27-- Internal Functions
28-------------------------------------------------------------------------------