From 19a502d3baf400cefbab09ece5c4b25b3ecbc43c Mon Sep 17 00:00:00 2001 From: Martin Grenfell Date: Thu, 28 Mar 2013 23:00:08 +0000 Subject: [PATCH] bugfix for sourcing the syntastic class files Fixes #543. Use `runtime!` to source all runtime files - not just the first one found. I actually dont know how syntastic was working at all without this... --- plugin/syntastic.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/syntastic.vim b/plugin/syntastic.vim index 8912565e..1b7ed22e 100644 --- a/plugin/syntastic.vim +++ b/plugin/syntastic.vim @@ -17,7 +17,7 @@ if exists("g:loaded_syntastic_plugin") endif let g:loaded_syntastic_plugin = 1 -runtime plugin/syntastic/*.vim +runtime! plugin/syntastic/*.vim let s:running_windows = has("win16") || has("win32")