From e0667be971ee0719c3128e87fe79ed4592ff0f90 Mon Sep 17 00:00:00 2001 From: Alison Watson Date: Tue, 6 Aug 2019 16:53:24 -0400 Subject: [PATCH] vim: more lenient setup_asm autogroup --- vim/vimrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim/vimrc b/vim/vimrc index 24b5dc2..6ae24bb 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -443,7 +443,7 @@ endif au FileType markdown set comments+=fb:- comments-=b:- indentexpr= " ASM options -au BufNewFile,BufRead *.s,*.inc,*.i call _agw.setup_asm() +au BufEnter *.asm,*.s,*.inc,*.i call _agw.setup_asm() " close empty buffers automatically au BufEnter * call _agw.close_empty()