branch: elpa/isl
commit 6d138af2c6eac6cbf3b6aaee68546c6b3298b377
Author: Thierry Volpiatto <[email protected]>
Commit: Thierry Volpiatto <[email protected]>

    Use 0.3 as timer delay
    
    otherwise isl hangs on large buffers with lot of results.
---
 isearch-light.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/isearch-light.el b/isearch-light.el
index 40c3f237302..8a5f375b1f5 100644
--- a/isearch-light.el
+++ b/isearch-light.el
@@ -324,7 +324,7 @@ appended at end."
         (minibuffer-with-setup-hook
             (lambda ()
               (setq timer (run-with-idle-timer
-                           0.1 'repeat #'isl-check-input)))
+                           0.3 'repeat #'isl-check-input)))
           (read-from-minibuffer
            prompt nil isl-map nil 'isl-history (thing-at-point 'symbol t)))
       (cancel-timer timer))))

Reply via email to