默认汇编语法文件运行不正常,并在网络上搜索有关气体组件的信息,我没有发现关于vim的气体(AT& T)语法文件。有没有人发现这个?我不能写我自己的语法文件。
http://img168.imageshack.us/img168/46/nasm.png ft = nasm
http://img160.imageshack.us/img160/5857/asm.png ft = asm(默认)
This may让你开始这更像是你想要的东西吗?
原文链接:https://www.f2er.com/bash/388687.html只需一个快速的搜索 – 它看起来有几种不同的汇编语法突出显示内置。你使用哪一个?
复制粘贴:帮助语法
Currently these Syntax files are included: asm GNU assembly (the default) asm68k Motorola 680x0 assembly asmh8300 Hitachi H-8300 version of GNU assembly ia64 Intel Itanium 64 fasm Flat assemlby http://flatassembler.net masm Microsoft assembly (probably works for any 80x86) nasm Netwide assembly tasm Turbo Assembly (with opcodes 80x86 up to Pentium,and MMX) pic PIC assembly (currently for PIC16F84) The most flexible is to add a line in your assembly file containing: :asmSyntax=nasm Replace "nasm" with the name of the real assembly Syntax. This line must be one of the first five lines in the file.
这个额外的syntax script来自vim.org
看起来你的屏幕截图正在使用默认的asm文件类型。
尝试
:set ft=nasm
并且您应该根据这些截图获得一些颜色更改。
从上面的屏幕截图,我已经对fasm vim语法进行了几个快速修改,并将其称为gasm。
可以在pastebin上找到here。
将其复制并粘贴到您的个人.vim / Syntax或vimfiles / Syntax目录中,并将其称为gasm.vim
然后在你的程序集文件中:set ft = gasm
这个vim脚本依赖于形式的注释
%评论
包括空间。
您可以在脚本的第116行看到这个(或者如果你愿意的话更改它)。
请注意:不要复制行号。