I'd like to use helm
as a drop-in replacement for display-completion-list
.
The only issue is that it displays this line on top, which I don't want:
C-z: I don't want this line here (keeping session)
.
Here's the code to illustrate:
(helm :sources `((name . "Do you have?")
(candidates . ("Red Leicester"
"Tilsit"
"Caerphilly"
"Bel Paese"
"Red Windsor"
"Stilton"))
(action . identity)
(persistent-help . "I don't want this line here"))
:buffer "*cheese shop*")
I've tried setting persistent-help
to nil, or not setting it at all, but it
still appears. How can I turn it off?