From 07ac3649817e6408a256400f0c46ab38f9cff8dd Mon Sep 17 00:00:00 2001 From: Alison Watson Date: Sun, 4 Aug 2019 18:53:51 -0400 Subject: [PATCH] vim: also use .i files for asm --- vim/vimrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim/vimrc b/vim/vimrc index 604a467..00c8cd5 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -396,7 +396,7 @@ endif au FileType markdown set comments+=fb:- comments-=b:- indentexpr= " ASM options -au BufNewFile,BufRead *.s,*.inc call _agw.setup_asm() +au BufNewFile,BufRead *.s,*.inc,*.i call _agw.setup_asm() " close empty buffers automatically au BufEnter * call _agw.close_empty()