So I've been doing some work in my Assembly class for college, and I use Vim as my primary code editor. I'm having a problem with Syntastic where I'm writing assembly for NASM, but Syntastic only wants to run the gcc error checker (which tells me all my code is wrong). I tried to run the NASM checker explicitly with SyntasticCheck nasm
but that didn't seem to work. I also attempted to let g:syntastic_asm_checkers = ['nasm']
in my .vimrc but that didn't seem to do anything. How can I get Syntastic to run the NASM checker here?
As a note, I tested this by just writing something like mov eax,
to get an error out of NASM.
:set ft?
what it shows? – Spasticnasm
is a checker for filetypenasm
, notasm
. – Jeffersonjefferyset filetype=nasm
. Thanks! @SatoKatsura : You were right, nasm is a checker for filetype nasm. For some reason I was under the impression that I could still run it anyway. I'll have to look more into getting vim to recognize the nasm filetype... – Titlark