recess.vim 1023 B

123456789101112131415161718192021222324
  1. "============================================================================
  2. "File: recess.vim
  3. "Description: Syntax checking plugin for syntastic.vim using `recess`
  4. " (http://twitter.github.io/recess/).
  5. "Maintainer: Tim Carry <tim at pixelastic 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. "============================================================================
  13. if exists('g:loaded_syntastic_css_recess_checker')
  14. finish
  15. endif
  16. let g:loaded_syntastic_css_recess_checker = 1
  17. call g:SyntasticRegistry.CreateAndRegisterChecker({
  18. \ 'filetype': 'css',
  19. \ 'name': 'recess',
  20. \ 'redirect': 'less/recess'})
  21. " vim: set sw=4 sts=4 et fdm=marker: