7fe3ac44c2
Problem: users want to define their own checking function and not use the syntastic defaults Solution: dont load the syntastic default if a checking function already exists. This way users can just define their own function and override syntastic. e.g. the user wants to have their own ruby checker, so in their vimrc they just add: function! SyntaxCheckers_ruby_GetLocList() return SyntasticMake({"some custom stuff"}) endfunction