diff options
author | w0rp <devw0rp@gmail.com> | 2017-09-10 00:20:05 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-09-10 00:20:05 +0100 |
commit | c11d2ae375399ea935e3c2e36e812e8a727ffd99 (patch) | |
tree | 965088380bf815db8e8894613f3f5c6a35b5ea73 /ale_linters/sml/smlnj_cm.vim | |
parent | 1a52a2b8804c0aa8e3c061225ccba47a23d3999e (diff) | |
download | ale-c11d2ae375399ea935e3c2e36e812e8a727ffd99.zip |
Fix an SML variable init bug, and get the SML cm file tests to pass on Windows
Diffstat (limited to 'ale_linters/sml/smlnj_cm.vim')
-rw-r--r-- | ale_linters/sml/smlnj_cm.vim | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/ale_linters/sml/smlnj_cm.vim b/ale_linters/sml/smlnj_cm.vim index 93cee63c..96cd7bd9 100644 --- a/ale_linters/sml/smlnj_cm.vim +++ b/ale_linters/sml/smlnj_cm.vim @@ -1,12 +1,6 @@ " Author: Jake Zimmerman <jake@zimmerman.io> " Description: SML checking with SML/NJ Compilation Manager -" Let user manually set the CM file (in case our search for a CM file is -" ambiguous and picks the wrong one) -" -" See :help ale-sml-smlnj for more information. -call ale#Set('sml_smlnj_cm_file', '*.cm') - function! ale_linters#sml#smlnj_cm#GetCommand(buffer) abort let l:cmfile = ale#handlers#sml#GetCmFile(a:buffer) return 'sml -m ' . l:cmfile . ' < /dev/null' |