From bfbd30f93545db1955787975e232b8b088603180 Mon Sep 17 00:00:00 2001 From: Celso Benedetti Date: Sat, 24 May 2025 11:41:12 -0300 Subject: [PATCH 1/2] docs: fix link to orgmode_api.txt --- docs/index.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.org b/docs/index.org index c131e7f39..bd97eb8c1 100644 --- a/docs/index.org +++ b/docs/index.org @@ -48,7 +48,7 @@ that demonstrates how the similar Orgmode clone [[https://github.com/dhruvasagar :PROPERTIES: :CUSTOM_ID: api-docs :END: -Nvim-orgmode exposes a Lua API that can be used to interact with the orgmode. To view it, check [[file:../docs/orgmode-api.txt][orgmode-api.txt]] +Nvim-orgmode exposes a Lua API that can be used to interact with the orgmode. To view it, check [[file:../doc/orgmode_api.txt][orgmode_api.txt]] or do =:h OrgApi= in Neovim. ** Globals and commands From 36aa2f257b26419f0ed1678cf465846374a48347 Mon Sep 17 00:00:00 2001 From: Celso Benedetti Date: Sat, 24 May 2025 11:41:25 -0300 Subject: [PATCH 2/2] docs: fix lua code for combined agenda view config --- docs/configuration.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuration.org b/docs/configuration.org index c232fcde8..f8fdf807b 100644 --- a/docs/configuration.org +++ b/docs/configuration.org @@ -681,7 +681,7 @@ require('orgmode').setup({ type = 'agenda', org_agenda_overriding_header = 'Whole week overview', org_agenda_span = 'week', -- 'week' is default, so it's not necessary here, just an example - org_agenda_start_on_weekday = 1 -- Start on Monday + org_agenda_start_on_weekday = 1, -- Start on Monday org_agenda_remove_tags = true -- Do not show tags only for this view }, }