Chore: linter complaints

This commit is contained in:
Grail Finder
2026-02-18 08:42:05 +03:00
parent 7d18a9d77e
commit c12311da99
6 changed files with 18 additions and 17 deletions

View File

@@ -928,11 +928,12 @@ func makeFilePicker() *tview.Flex {
}
}
// Update status line based on search state
if searching {
switch {
case searching:
statusView.SetText("Search: " + searchQuery + "_")
} else if searchQuery != "" {
case searchQuery != "":
statusView.SetText("Current: " + dir + " (filter: " + searchQuery + ")")
} else {
default:
statusView.SetText("Current: " + dir)
}
}