SML Modes
There are a few Emacs modes for SML.
-
sml-mode
-
mlton.el contains the Emacs lisp that StephenWeeks uses to interact with MLton (in addition to using sml-mode).
-
http://primate.net/~itz/mindent.tar, developed by Ian Zimmerman, who writes:
-
Unlike the widespread sml-mode.el it doesn't try to indent code based on ML syntax. I gradually got sceptical about this approach after writing the initial indentation support for caml mode and watching it bloat insanely as the language added new features. Also, any such attempts that I know of impose a particular coding style, or at best a choice among a limited set of styles, which I now oppose. Instead my mode is based on a generic package which provides manual bindable commands for common indentation operations (example: indent the current line under the n-th occurrence of a particular character in the previous non-blank line).
MLB modes
There is a mode for editing ML Basis files.
Error messages
MLton's error messages are not in the format that the Emacs next-error parser natively understands. There are a couple of ways to fix this. The easiest way is to add the following to your .emacs to cause Emacs to recognize MLton's error messages.
(require 'compile) (add-to-list 'compilation-error-regexp-alist '("^Error: \\([^\t\n]*\\) \\([0-9]+\\)\\.\\([0-9]+\\)\\.$" 1 2 3))
Alternatively, you could use a sed script to rewrite MLton's errors. Here is one such script:
sed -e 's/^\([W|E].*\): \([^ ]*\) \([0-9][0-9]*\)\.\([0-9][0-9]*\)\./\2:\3:\1:\4/'