Skip to content

Commit

Permalink
pull more results
Browse files Browse the repository at this point in the history
  • Loading branch information
ms-jpq committed Nov 15, 2024
1 parent b952006 commit a25baaf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion coq/clients/lsp/worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,8 @@ async def cont() -> None:
async def _work(self, context: Context) -> AsyncIterator[Completion]:
async with self._work_lock, self._working:
try:
limit = BIGGEST_INT if context.manual else self._max_results
# TODO: extract this into an option
limit = BIGGEST_INT if context.manual else self._max_results * 6

use_cache, cached_clients, cached = self._cache.apply_cache(
context, always=False
Expand Down

0 comments on commit a25baaf

Please sign in to comment.