mirror of
https://github.com/kdheepak/taskwarrior-tui.git
synced 2025-08-25 17:57:19 +02:00
feat: Change behavior of filter when using filter
This commit is contained in:
parent
3cb54b1700
commit
6bbb31c1bb
1 changed files with 6 additions and 0 deletions
|
@ -3181,7 +3181,13 @@ impl TaskwarriorTui {
|
|||
} else {
|
||||
self.mode = Mode::Tasks(Action::Report);
|
||||
self.filter_history.add(self.filter.as_str());
|
||||
self.filter.update("", 0);
|
||||
for c in self.config.filter.chars() {
|
||||
self.filter.insert(c, 1);
|
||||
}
|
||||
self.history_status = None;
|
||||
self.update_input_for_completion();
|
||||
self.dirty = true;
|
||||
self.update(true)?;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue