[ << ] | [ < ] | [ Up ] | [ > ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
35.1 Installing the BEE
The standard procedure for installing Bigloo handles the compilation
of all tools required by the BEE. Additional Emacs-lisp code have
to be appended to your .emacs
file:
(autoload 'bdb "bdb" "bdb mode" t) (autoload 'bee-mode "bee-mode" "bee mode" t) (setq auto-mode-alist (append '(("\\.scm$" . bee-mode) ("\\.sch$" . bee-mode) ("\\.scme$" . bee-mode) ("\\.bgl$" . bee-mode) ("\\.bee$" . bee-mode)) auto-mode-alist))
This code will force emacs
to switch to BEE mode when editing
Scheme source files.
This document was generated on March 31, 2014 using texi2html 5.0.