From 520f2ffada26ec1db8bdab4c405db48ce667d2bb Mon Sep 17 00:00:00 2001 From: Raphael Proust Date: Fri, 16 Dec 2016 15:09:21 +0000 Subject: [PATCH] Fix for spolu#62 --- plugin/dwm.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/dwm.vim b/plugin/dwm.vim index c9c7661..9889668 100644 --- a/plugin/dwm.vim +++ b/plugin/dwm.vim @@ -255,6 +255,6 @@ end if has('autocmd') augroup dwm au! - au BufWinEnter * if &l:buflisted || &l:filetype == 'help' | call DWM_AutoEnter() | endif + au BufWinEnter * if !&l:buflisted || &l:filetype == 'help' | call DWM_AutoEnter() | endif augroup end endif