Hello,
is it possible to activate SLIME together with hs-minor-mode automatically when loading a Lisp file? I tried (add-hook 'lisp-mode-hook 'hs-minor-mode-hook) which, however, did not work.
Thank you, Nicolas
P.S.: Does anyone here regularly use this hide-show moded?
+ Nicolas Neuss neuss@math.uni-karlsruhe.de:
| is it possible to activate SLIME together with hs-minor-mode automatically | when loading a Lisp file? I tried | (add-hook 'lisp-mode-hook 'hs-minor-mode-hook) | which, however, did not work.
Shouldn't that be (add-hook 'lisp-mode-hook 'hs-minor-mode) ?
- Harald
Harald Hanche-Olsen hanche@math.ntnu.no writes:
Shouldn't that be (add-hook 'lisp-mode-hook 'hs-minor-mode) ?
Yep, you're right. It looks as if this works.
Thank you very much,
Nicolas