Skip to content

Commit

Permalink
Add user var to specify helm-input-idle-delay
Browse files Browse the repository at this point in the history
  • Loading branch information
Thierry Volpiatto committed Aug 5, 2020
1 parent 219e517 commit 8ba43d2
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions helm-recoll.el
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,10 @@ You do not need to include the -c option since this is already included, and the
config directory can be passed as a argument to `helm-recoll-create-source'."
:type '(repeat string))

(defcustom helm-recoll-input-idle-delay 0.6
"The `helm-input-idle-delay' value for helm-recoll."
:type 'float)

(defvar helm-recoll-sources-buffer "*helm recoll source select*")

(defvar helm-recoll-history nil
Expand Down Expand Up @@ -384,8 +388,9 @@ helm-recoll-<name>."
(defun helm-recoll nil
"Select recoll sources for helm."
(interactive)
(helm :sources 'helm-recoll-sources-source
:buffer helm-recoll-sources-buffer))
(let ((helm-input-idle-delay helm-recoll-input-idle-delay))
(helm :sources 'helm-recoll-sources-source
:buffer helm-recoll-sources-buffer)))

(provide 'helm-recoll)

Expand Down

0 comments on commit 8ba43d2

Please sign in to comment.