feat(todo): add numbered tasks, edit, done, and future filtering

Implement smoother todo editing with the following features:
- Display numbered tasks [1], [2], etc. in `streamd todo`
- Add `streamd todo N edit` to open editor at task line
- Add `streamd todo N done` to insert @Done after @Task
- Add `--show-future` flag to include future tasks (hidden by default)
This commit is contained in:
Konstantin Fickel 2026-04-02 18:27:19 +02:00
parent a8c41ec833
commit 124a5b7e2a
Signed by: kfickel
GPG key ID: A793722F9933C1A5
5 changed files with 198 additions and 7 deletions

View file

@ -1,4 +1,4 @@
pub mod args;
pub mod commands;
pub use args::{Cli, Commands};
pub use args::{Cli, Commands, TodoAction};