···115115 /// address the link. That number should be supplied to the -l/link_index where it will be
116116 /// subsequently followed opened or shown.
117117 Follow {
118118- /// The index of the link to open. Must be supplied.
119119- #[arg(short = 'l')]
120120- link_index: usize,
121118 /// The task whose body will be searched for links.
122119 #[command(flatten)]
123120 task_id: TaskId,
121121+ /// The index of the link to open. Must be supplied.
122122+ #[arg(short = 'l', default_value_t = 1)]
123123+ link_index: usize,
124124 /// When opening an internal link, whether to show or edit the addressed task.
125125 #[arg(short = 'e', default_value_t = false)]
126126 edit: bool,