]> git.r.bdr.sh - rbdr/nota.nvim/blob - lua/task_views.lua
Add basic structure
[rbdr/nota.nvim] / lua / task_views.lua
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
10 function open_agenda(configuration)
11 error("Not yet implemented")
12 end
13
14 --- Opens the view to show open tasks
15 -- @param configuration tNotaConfiguration the plugin configuration
16 function open_open(configuration)
17 error("Not yet implemented")
18 end
19
20 --- Opens the view to search the journal
21 -- @param configuration tNotaConfiguration the plugin configuration
22 function open_journal(configuration)
23 error("Not yet implemented")
24 end
25
26 -------------------------------------------------------------------------------
27 -- Internal Functions
28 -------------------------------------------------------------------------------