Aaron Isotton

Emacs Oberon Mode

At ETH we have to use Oberon — a programming language similar to Pascal, also invented by Niklaus Wirth — to program. (At least, we had to in the first 2 semesters). So I adapted the Pascal mode shipping with Emacs 21 for Oberon. It's not perfect, but it works quite well. Just download oberon.el and add the following lines to your .emacs:

(setq load-path
      (append load-path '("path-to-oberon-el")))
(require 'oberon)
(add-to-list 'auto-mode-alist '("\\.Mod" . oberon-mode))

You just have to replace path-to-oberon-el with the directory oberon.el resides in. Have fun.