From 2188c7dd3758ebad8119edf5843b35edab9bd027 Mon Sep 17 00:00:00 2001 From: Alison Watson Date: Thu, 15 Aug 2019 23:38:22 -0400 Subject: [PATCH] vim: fix wonky BufEnter autocmd --- vim/vimrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim/vimrc b/vim/vimrc index 3a0172a..041bca2 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -449,7 +449,7 @@ endif au FileType markdown set comments+=fb:- comments-=b:- indentexpr= " ASM options -au BufEnter *.asm,*.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()