Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
:set syntax=nasm我想让 vim 打开所有 *.asm 类型的文件,语法设置为 nasm,这样我每次启动 vim 时都不必输入。
:set syntax=nasm
我确定我可以在我的 .vimrc 文件中放入一些东西?
将此添加到您的 vimrc 文件中
au BufRead,BufNewFile *.asm set filetype=nasm
每当缓冲区读取或创建具有扩展名的新文件时,.asm它将使用nasm文件语法对其进行格式化
.asm
nasm
au是autocmd 您可以通过使用了解更多信息的缩写:h au
au
autocmd
:h au
采用:
let asmsyntax="nasm"
在你的 .vimrc