mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-20 09:32:19 +00:00
fix: file fuzzy search (#2409)
This commit is contained in:
parent
d13467d869
commit
a97612287f
1 changed files with 1 additions and 1 deletions
|
|
@ -94,7 +94,7 @@ func (c *completionDialogComponent) getAllCompletions(query string) tea.Cmd {
|
|||
}
|
||||
|
||||
// If there's a query, fuzzy-rank within each provider, then concatenate by provider order
|
||||
if query != "" && providersWithResults > 0 {
|
||||
if query != "" && providersWithResults > 1 {
|
||||
t := theme.CurrentTheme()
|
||||
baseStyle := styles.NewStyle().Background(t.BackgroundElement())
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue