X-Git-Url: https://git.r.bdr.sh/rbdr/nota.nvim/blobdiff_plain/9e9e89d8556ecafa6b11ab21aa9ffab550f7f3ad..ca10d2a36e3e7d8d28f15f36f0812384606c238d:/plugin/nota.lua diff --git a/plugin/nota.lua b/plugin/nota.lua index 9e09d61..180c84d 100644 --- a/plugin/nota.lua +++ b/plugin/nota.lua @@ -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 })