Wilfred / helpful

A better Emacs *help* buffer
1.11k stars 62 forks source link

Cannot install due to dash-functional version #252

Closed AYM1607 closed 3 years ago

AYM1607 commented 3 years ago

Hi!

First of all, I apologize if this is a silly question, I'm fairly new to emacs and still trying to figure things out.

I tried to install the helpful package today and received this error message:

Screen Shot 2020-12-15 at 9 36 51 PM

I followed the link and it seems that that version of dash-functional is actually not available (I don't know if this is temporary or MELPA just keeps the latest version)

The elisp that I used to try to install helpful is the following:

(use-package helpful
 :custom
 (counsel-describe-function-function #'helpful-callable)
 (counsel-describe-variable-funciton #'helpful-variable)
 :bind
 ([remap describe-function] . counsel-describe-function)
 ([remap describe-command] . helpful-command)
 ([remap describe-variable] . counsel-describe-variable)
 ([remap describe-key] . helpful-key))
AYM1607 commented 3 years ago

Turns out I just had to run package-refresh-contents and the error went away.