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.
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!
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.