How to set the next repeat date on simple Events (not TODO Tasks)? #1095
Replies: 4 comments 5 replies
-
|
Hi, Thanks for reporting. It's actually a bug. It should stay without TODO keyword if it was without it. I created an issue to look into #1096 |
Beta Was this translation helpful? Give feedback.
-
|
The issue should be fixed now on latest master. |
Beta Was this translation helpful? Give feedback.
-
|
this is my lazy.nvim config file return {
"nvim-orgmode/orgmode",
event = "VeryLazy",
ft = { "org" },
config = function()
-- Setup orgmode
local home = vim.fn.expand("~")
local path = jit.arch ~= "arm64" and home .. "/projects/org" or home .. "/storage/shared/git/org"
require("orgmode").setup({
org_agenda_files = path .. "/*.org",
org_default_notes_file = path .. "/notes.org",
org_capture_templates = {
e = { description = "Event", template = "* %?\n\t%t", target = path .. "/agenda.org" },
t = { description = "Task", template = "* TODO %?\n\t%t", target = path .. "/todo.org" },
n = { description = "Note", template = "* %?\n" },
},
})
-- Experimental LSP support
vim.lsp.enable("org")
end,
} |
Beta Was this translation helpful? Give feedback.
-
|
Test: Create a simple line Go to agenda view ( While in the Agenda buffer, move the cursor on Test Event line and
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I have the following line
SCHEDULED: <2026-01-31 Sat ++1w>
How can I advance the event to the next occurrence? I tried by pressing
tin the Agenda, it's working, but it add a TODO modifier!Since this is a recurring event and not a task, is there a way to achieve what I requested?
Thanks in advance
Beta Was this translation helpful? Give feedback.
All reactions