]> git.r.bdr.sh - rbdr/nota.nvim/blobdiff - plugin/nota.lua
Allow next and previous
[rbdr/nota.nvim] / plugin / nota.lua
index 9e09d61e0d44f6e4443a547efb6e333477144c52..180c84d761d994d32bd445da86c7b17064b004aa 100644 (file)
@@ -59,6 +59,8 @@ command('NotaOpenMonthlyNote', function() require('notes').open_monthly() end, {
 command('NotaOpenSeasonalNote', function() require('notes').open_seasonal() end, { nargs = 0 })
 command('NotaOpenYearlyNote', function() require('notes').open_yearly() end, { nargs = 0 })
 command('NotaOpenNote', function() require('notes').open() end, { nargs = 0 })
+command('NotaOpenNextNote', function() require('notes').open_next() end, { nargs = 0 })
+command('NotaOpenPreviousNote', function() require('notes').open_previous() end, { nargs = 0 })
 
 -- Task View Handling Commands
 command('NotaOpenAgenda', function() require('task_views').open_agenda() end, { nargs = 0 })