Merge pull request #1900 from McSwaggens/master

Fixed NASM linter from outputting junk file
This commit is contained in:
w0rp
2018-09-10 09:24:35 +01:00
committed by w0rp
parent 9518ea9acc
commit c76d8aa0b5
2 changed files with 5 additions and 3 deletions

View File

@@ -8,10 +8,12 @@ function! ale_linters#nasm#nasm#GetCommand(buffer) abort
" Note that NASM requires a trailing slash for the -I option.
let l:separator = has('win32') ? '\' : '/'
let l:path = fnamemodify(bufname(a:buffer), ':p:h') . l:separator
let l:output_null = has('win32') ? 'NUL' : '/dev/null'
return '%e -X gnu -I ' . ale#Escape(l:path)
\ . ale#Pad(ale#Var(a:buffer, 'nasm_nasm_options'))
\ . ' %s'
\ . ' -o ' . l:output_null
endfunction
function! ale_linters#nasm#nasm#Handle(buffer, lines) abort