-
Notifications
You must be signed in to change notification settings - Fork 0
Home
rudi edited this page Sep 13, 2010
·
2 revisions
This is creol-mode.el, an Emacs major mode for the programming /
modelling language Creol. Creol is being developed at the University of
Oslo, Department of Informatics. For further information about the
language, see the Creol homepage .
Initial emacs mode for Creol by Marcel Kyas <kyas@ifi.uio.no>, further
development and maintenance by Rudi Schlatte <rudi@constantly.at>.
Creol-mode is licensed under GPLv3 or later.
Add these lines to your ~/.emacs
file:
(add-to-list 'load-path "path/to/creol-mode")
(autoload 'creol-mode "creol-mode" nil t)
(unless (assoc "\\.creol\\'" auto-mode-alist)
(add-to-list 'auto-mode-alist '("\\.creol\\'" . creol-mode)))
Creol-mode should be active automatically when you open a file of type
“.creol”. The key C-c C-c
(`creol-next-action’) compiles the buffer
with creolc or starts the Maude interpreter.