bbatsov / prelude

Prelude is an enhanced Emacs 25.1+ distribution that should make your experience with Emacs both more pleasant and more powerful.
https://prelude.emacsredux.com
5.12k stars 1.86k forks source link

disable hs-minor-mode in web-mode #833

Closed ghost closed 9 years ago

ghost commented 9 years ago

I use Prelude, in my personal.el, I wrote (add-hook 'prog-mode-hook #'hs-minor-mode) (add-hook 'web-mode-hook (lambda () (hs-minor-mode -1))) but when I open a *.html file, in mini buffer, show an error information: "File mode specification error: (error "Web Mode doesn't support Hideshow Minor Mode")". I don't know why! Need your help, thank you.

ghost commented 9 years ago

I got the solution, I tried (add-hook 'prog-mode-hook (lambda () (unless (eq major-mode 'web-mode) (hs-minor-mode)))), and it works. So I will close this issue. Sorry to bother you!