All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
1 ===============================================================================
2 ALE SML Integration *ale-sml-options*
4 ===============================================================================
8 There are two SML/NJ powered checkers:
10 - one using Compilation Manager that works on whole projects, but requires you
11 to save before errors show up
12 - one using the SML/NJ REPL that works as you change the text, but might fail
13 if your project can only be built with CM.
15 We dynamically select which one to use based whether we find a `*.cm` file at
16 or above the directory of the file being checked. Only one checker (`smlnj`,
17 `smlnj-cm`) will be enabled at a time.
19 -------------------------------------------------------------------------------
21 *ale-options.sml_smlnj_cm_file*
22 *g:ale_sml_smlnj_cm_file*
23 *b:ale_sml_smlnj_cm_file*
25 g:ale_sml_smlnj_cm_file
29 By default, ALE will look for a `*.cm` file in your current directory,
30 searching upwards. It stops when it finds at least one `*.cm` file (taking
31 the first file if there are more than one).
33 Change this option (in the buffer or global scope) to control how ALE finds
34 CM files. For example, to always search for a CM file named `sandbox.cm`: >
36 let g:ale_sml_smlnj_cm_file = 'sandbox.cm'
38 ===============================================================================
39 vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: