diff options
author | w0rp <devw0rp@gmail.com> | 2019-01-26 19:33:52 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2019-01-26 19:33:52 +0000 |
commit | cf14d0aa53e9b51f4987dbfd3913183901bb2805 (patch) | |
tree | 8b4cbeeee01c2c40cdc725ddddcfa31cec85ccd1 /ale_linters/cs/mcsc.vim | |
parent | f12d312aa4aa49c4698056933030cd5adb60b489 (diff) | |
download | ale-cf14d0aa53e9b51f4987dbfd3913183901bb2805.zip |
#2132 Unify temporary file management in command.vim
Diffstat (limited to 'ale_linters/cs/mcsc.vim')
-rw-r--r-- | ale_linters/cs/mcsc.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/cs/mcsc.vim b/ale_linters/cs/mcsc.vim index 1561661e..a169297c 100644 --- a/ale_linters/cs/mcsc.vim +++ b/ale_linters/cs/mcsc.vim @@ -30,7 +30,7 @@ function! ale_linters#cs#mcsc#GetCommand(buffer) abort " register temporary module target file with ale " register temporary module target file with ALE. - let l:out = ale#engine#CreateFile(a:buffer) + let l:out = ale#command#CreateFile(a:buffer) " The code is compiled as a module and the output is redirected to a " temporary file. |