style: reformat
This commit is contained in:
parent
03263840ac
commit
afd6f2f77a
|
@ -190,8 +190,7 @@ async fn main() {
|
|||
" {}{}) ",
|
||||
tasks.get_task_path(tasks.get_position()),
|
||||
tasks.get_prompt_suffix()
|
||||
)
|
||||
.italic()
|
||||
).italic()
|
||||
);
|
||||
stdout().flush().unwrap();
|
||||
match lines.next() {
|
||||
|
|
|
@ -159,10 +159,7 @@ impl TaskState {
|
|||
}
|
||||
pub(crate) fn matches_label(&self, label: &str) -> bool {
|
||||
self.state == State::Active
|
||||
|| self
|
||||
.name
|
||||
.as_ref()
|
||||
.is_some_and(|n| n.eq_ignore_ascii_case(label))
|
||||
|| self.name.as_ref().is_some_and(|n| n.eq_ignore_ascii_case(label))
|
||||
|| self.state.to_string().eq_ignore_ascii_case(label)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -198,8 +198,7 @@ impl Tasks {
|
|||
self.traverse_up_from(Some(id))
|
||||
.take_while(|t| Some(t.event.id) != self.position),
|
||||
false,
|
||||
)
|
||||
.unwrap_or(id.to_string())
|
||||
).unwrap_or(id.to_string())
|
||||
}
|
||||
|
||||
// Helpers
|
||||
|
@ -266,8 +265,7 @@ impl Tasks {
|
|||
.values()
|
||||
.filter(|t| t.parent_id() == self.position)
|
||||
.map(|t| t.get_id()),
|
||||
)
|
||||
.into_iter()
|
||||
).into_iter()
|
||||
.filter(|t| {
|
||||
self.state.as_ref().map_or(true, |state| {
|
||||
t.state().is_some_and(|t| t.matches_label(state))
|
||||
|
@ -373,7 +371,7 @@ impl Tasks {
|
|||
|
||||
pub(crate) fn move_to(&mut self, id: Option<EventId>) {
|
||||
self.view.clear();
|
||||
self.tags.clear();
|
||||
self.tags.clear(); // TODO unsure if this is needed, needs alternative way to clear
|
||||
if id == self.position {
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue