···115 /// address the link. That number should be supplied to the -l/link_index where it will be
116 /// subsequently followed opened or shown.
117 Follow {
118- /// The index of the link to open. Must be supplied.
119- #[arg(short = 'l')]
120- link_index: usize,
121 /// The task whose body will be searched for links.
122 #[command(flatten)]
123 task_id: TaskId,
000124 /// When opening an internal link, whether to show or edit the addressed task.
125 #[arg(short = 'e', default_value_t = false)]
126 edit: bool,
···115 /// address the link. That number should be supplied to the -l/link_index where it will be
116 /// subsequently followed opened or shown.
117 Follow {
000118 /// The task whose body will be searched for links.
119 #[command(flatten)]
120 task_id: TaskId,
121+ /// The index of the link to open. Must be supplied.
122+ #[arg(short = 'l', default_value_t = 1)]
123+ link_index: usize,
124 /// When opening an internal link, whether to show or edit the addressed task.
125 #[arg(short = 'e', default_value_t = false)]
126 edit: bool,