]> git.r.bdr.sh - rbdr/dotfiles/blame - vim/syntax_checkers/scss.vim
A whole bunch of new additions to the submodules
[rbdr/dotfiles] / vim / syntax_checkers / scss.vim
CommitLineData
0d23b6e5
BB
1
2"============================================================================
3"File: scss.vim
4"Description: scss syntax checking plugin for syntastic
5"Maintainer: Martin Grenfell <martin.grenfell at gmail dot com>
6"License: This program is free software. It comes without any warranty,
7" to the extent permitted by applicable law. You can redistribute
8" it and/or modify it under the terms of the Do What The Fuck You
9" Want To Public License, Version 2, as published by Sam Hocevar.
10" See http://sam.zoy.org/wtfpl/COPYING for more details.
11"
12"============================================================================
13if exists("loaded_scss_syntax_checker")
14 finish
15endif
16let loaded_scss_syntax_checker = 1
17
18"bail if the user doesnt have the sass binary installed
19if !executable("sass")
20 finish
21endif
22
23runtime syntax_checkers/sass.vim
24
25function! SyntaxCheckers_scss_GetLocList()
26 return SyntaxCheckers_sass_GetLocList()
27endfunction