A file-based task manager
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

FIX: See if order of args fixes help

+7 -4
+2
.tsk/archive/tsk-23.tsk
··· 1 + Allow selecting which task to follow links from 2 +
+1 -1
.tsk/next
··· 1 - 23 1 + 24
+1
.tsk/tasks/tsk-23.tsk
··· 1 + ../archive/tsk-23.tsk
+3 -3
src/main.rs
··· 110 110 /// address the link. That number should be supplied to the -l/link_index where it will be 111 111 /// subsequently followed opened or shown. 112 112 Follow { 113 + /// The index of the link to open. Must be supplied. 114 + #[arg(short = 'l')] 115 + link_index: usize, 113 116 /// The task whose body will be searched for links. 114 117 #[command(flatten)] 115 118 task_id: TaskId, 116 - /// The index of the link to open. Must be supplied. 117 - #[arg(short = 'l')] 118 - link_index: usize, 119 119 /// When opening an internal link, whether to show or edit the addressed task. 120 120 #[arg(short = 'e', default_value_t = false)] 121 121 edit: bool,