diff options
| author | historia <[not public]> | 2026-06-11 23:05:34 -0400 |
|---|---|---|
| committer | historia <[not public]> | 2026-06-11 23:05:34 -0400 |
| commit | 6b559be14142bf89b971159fb969c8e414807b20 (patch) | |
| tree | 3801901c306c23eefdc8658406699559abd54ed8 /src/soon.nim | |
| parent | 05d4fa5e4ccadc8521dc7bc3a2f4bc01ebafd40b (diff) | |
| download | soon-6b559be14142bf89b971159fb969c8e414807b20.tar.gz | |
fix: todo behavior with tui works now
Diffstat (limited to 'src/soon.nim')
| -rw-r--r-- | src/soon.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soon.nim b/src/soon.nim index e6c545d..4e459f9 100644 --- a/src/soon.nim +++ b/src/soon.nim @@ -167,8 +167,8 @@ proc processCommands(commands: seq[string], conf: StringTableRef, interactive: b of "w": agenda.printAgenda(calendar, 0, 7, conf, arch) of "m": agenda.printAgenda(calendar, 0, 28, conf, arch) of "y": agenda.printAgenda(calendar, 0, 365, conf, arch) - of "t": todos.printTodos(calendar, arch) - of "d": todos.printDeadlineTodos(calendar, arch) + of "t": todos.printTodos(calendar) + of "d": todos.printDeadlineTodos(calendar) of "c": printReference() of "e": openEditor(conf) of "s": openConfig(conf) |
