Todos
This is a video of managing todos in Dendron. It goes over the following:
- using journal notes to keep a daily todo list
- using snippets to create check boxes
- using scratch notes to create nested todos in new notes
- using search editor commands to get an aggregration of all my tasks in a given day
Resources
Below are some of the settings used in the above video
- non-default settings
"settings": { "dendron.defaultJournalDateFormat": "Y.MM.DD", "dendron.defaultScratchDateFormat": "Y.MM.DD-HHmmss", } - snippets used
"todo": { "prefix": "to", "scope": "markdown", "body": "- [ ] ", "description": "todo box" } - search editor command used
{ "key": "ctrl+s t", "command": "search.action.openNewEditor", "args": { "query": "## Tasks", "triggerSearch": false, "focusResults": false, "includes": "*.journal.*" } }