Khady / merlin-eldoc

Type and doc on hover for OCaml and Reason in emacs
GNU General Public License v3.0
43 stars 3 forks source link

Example of setting up merlin-auto-hl #1

Closed kuwze closed 6 years ago

kuwze commented 6 years ago

I just wanted to add that this is how I setup merlin-auto-hl (after cloning this repository into ~/.emacs.d/bootleg/ on my system):

(use-package merlin-auto-hl
  :load-path "~/.emacs.d/bootleg/merlin-auto-hl/"
  :hook
  (reason-mode . merlin-hl-identifier-mode)
  (tuareg-mode . merlin-hl-identifier-mode)
  (caml-mode-hook . merlin-hl-identifier-mode))

There seems to be an issue with using quelpa: (quelpa '(merlin-auto-hl :repo "Khady/merlin-auto-hl" :fetcher github)) I get the following error:

Debugger entered--Lisp error: (error "Package lacks a file header") signal(error ("Package lacks a file header")) error("Package lacks a file header")

Khady commented 6 years ago

Thanks for the report. I will add the file header.

Khady commented 6 years ago

Fixed by 5e1e373. The quelpa issue is traked in #2.