Skip to content

Commit

Permalink
Remove minibuffer-completion-help from minibuffer-setup-hook (#1240).
Browse files Browse the repository at this point in the history
* helm-mode.el (helm-mode-minibuffer-setup-hook-black-list):
Add minibuffer-completion-help, fix type.
  • Loading branch information
thierryvolpiatto committed Oct 23, 2015
1 parent 0b84622 commit 2f004db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions helm-mode.el
Expand Up @@ -112,13 +112,13 @@ To fuzzy match `completion-at-point' and friends see
:group 'helm-mode
:type 'boolean)

(defcustom helm-mode-minibuffer-setup-hook-black-list nil
(defcustom helm-mode-minibuffer-setup-hook-black-list '(minibuffer-completion-help)
"Incompatible `minibuffer-setup-hook' functions go here.
A list of symbols.
Helm-mode is rejecting all lambda's, byte-code fns
and all functions belonging in this list from `minibuffer-setup-hook'."
:group 'helm-mode
:type 'boolean)
:type '(repeat (choice symbol)))


(defvar helm-comp-read-map
Expand Down

0 comments on commit 2f004db

Please sign in to comment.