mirror of
https://github.com/kdheepak/taskwarrior-tui.git
synced 2025-08-25 17:57:19 +02:00
Fix completion down arrow in filter pane
This commit is contained in:
parent
49aae22a38
commit
8898ab8824
1 changed files with 1 additions and 1 deletions
|
@ -2634,7 +2634,7 @@ impl TaskwarriorTuiApp {
|
||||||
}
|
}
|
||||||
Key::Down => {
|
Key::Down => {
|
||||||
if self.show_completion_pane && !self.completion_list.is_empty() {
|
if self.show_completion_pane && !self.completion_list.is_empty() {
|
||||||
self.completion_list.previous();
|
self.completion_list.next();
|
||||||
} else if let Some(s) = self
|
} else if let Some(s) = self
|
||||||
.filter_history_context
|
.filter_history_context
|
||||||
.history_search(&self.filter.as_str()[..self.filter.pos()], HistoryDirection::Forward)
|
.history_search(&self.filter.as_str()[..self.filter.pos()], HistoryDirection::Forward)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue