From 0c00b203e61bffbadbc499cbf68af6f89a5a3e29 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Mon, 16 Jun 2025 00:39:11 +0900 Subject: Implement asynchronous transform actions (#4419) Close #4418 Example: fzf --bind 'focus:bg-transform-header(sleep 2; date; echo {})' --- src/constants.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/constants.go') diff --git a/src/constants.go b/src/constants.go index ececdb97..6f56fd58 100644 --- a/src/constants.go +++ b/src/constants.go @@ -29,6 +29,10 @@ const ( maxPatternLength = 1000 maxMulti = math.MaxInt32 + // Background processes + maxBgProcesses = 30 + maxBgProcessesPerAction = 3 + // Matcher numPartitionsMultiplier = 8 maxPartitions = 32 -- cgit v1.2.3