File: templates

package info (click to toggle)
haskell-mode 2.0-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 504 kB
  • ctags: 315
  • sloc: lisp: 3,790; makefile: 70; haskell: 20; sh: 19
file content (20 lines) | stat: -rw-r--r-- 788 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Template: haskell_mode/ghc_added
Type: note
Description: Hugs interaction mode no longer turned on by default
 The 0.4 release of haskell-mode adds support for GHCi interaction.
 Unfortunately, it conflicts with the Hugs interaction mode previously
 turned on by default.  Thus, neither of the modes are turned on by
 default anymore.
 .
 If you want to turn one of them on by default for all users, edit
  /etc/emacs/site-start.d/50haskell-mode.el
 Individual users can turn one of them on by default by adding
 either
  (add-hook 'haskell-mode-hook 'turn-on-haskell-hugs)
 or
  (add-hook 'haskell-mode-hook 'turn-on-haskell-ghci)
 to their own ~/.emacs.
 .
 The interaction modes can be turned on for individual buffers by typing
 M-x turn-on-haskell-hugs or M-x turn-on-haskell-ghci.