diff options
| author | Bryant Chandler <[email protected]> | 2025-08-07 15:24:55 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-08-07 22:24:55 +0000 |
| commit | 9fc7115b8654fc193f948570293485f16d89f60a (patch) | |
| tree | 22b9049754e35deabd61ad0923ab3f22a849bff0 /packages/cli/src/ui/hooks/useAtCompletion.ts | |
| parent | c38147a3a61779ee9b82f656f03b51fc0e68e799 (diff) | |
perf(filesearch): Use async fzf for non-blocking file search (#5771)
Co-authored-by: Jacob Richman <[email protected]>
Diffstat (limited to 'packages/cli/src/ui/hooks/useAtCompletion.ts')
| -rw-r--r-- | packages/cli/src/ui/hooks/useAtCompletion.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/cli/src/ui/hooks/useAtCompletion.ts b/packages/cli/src/ui/hooks/useAtCompletion.ts index 82439c14..f6835dc8 100644 --- a/packages/cli/src/ui/hooks/useAtCompletion.ts +++ b/packages/cli/src/ui/hooks/useAtCompletion.ts @@ -194,7 +194,7 @@ export function useAtCompletion(props: UseAtCompletionProps): void { slowSearchTimer.current = setTimeout(() => { dispatch({ type: 'SET_LOADING', payload: true }); - }, 100); + }, 200); try { const results = await fileSearch.current.search(state.pattern, { |
