Skip to content
This repository was archived by the owner on Sep 20, 2023. It is now read-only.

Commit f011aa8

Browse files
committed
Leftovers from previous commit.
1 parent f6ec8a4 commit f011aa8

File tree

3 files changed

+47
-1
lines changed

3 files changed

+47
-1
lines changed

plugin/syntastic.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ if has('reltime')
1919
lockvar! g:_SYNTASTIC_START
2020
endif
2121

22-
let g:_SYNTASTIC_VERSION = '3.9.0-24'
22+
let g:_SYNTASTIC_VERSION = '3.9.0-25'
2323
lockvar g:_SYNTASTIC_VERSION
2424

2525
" Sanity checks {{{1

syntax_checkers/svg/validator.vim

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
"============================================================================
2+
"File: validator.vim
3+
"Description: Syntax checking plugin for syntastic
4+
"Maintainer: LCD 47 <lcd047 at gmail dot com>
5+
"License: This program is free software. It comes without any warranty,
6+
" to the extent permitted by applicable law. You can redistribute
7+
" it and/or modify it under the terms of the Do What The Fuck You
8+
" Want To Public License, Version 2, as published by Sam Hocevar.
9+
" See http://sam.zoy.org/wtfpl/COPYING for more details.
10+
"
11+
"============================================================================
12+
13+
if exists('g:loaded_syntastic_svg_validator_checker')
14+
finish
15+
endif
16+
let g:loaded_syntastic_svg_validator_checker = 1
17+
18+
call g:SyntasticRegistry.CreateAndRegisterChecker({
19+
\ 'filetype': 'svg',
20+
\ 'name': 'validator',
21+
\ 'redirect': 'html/validator'})
22+
23+
" vim: set sw=4 sts=4 et fdm=marker:

syntax_checkers/xhtml/validator.vim

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
"============================================================================
2+
"File: validator.vim
3+
"Description: Syntax checking plugin for syntastic
4+
"Maintainer: LCD 47 <lcd047 at gmail dot com>
5+
"License: This program is free software. It comes without any warranty,
6+
" to the extent permitted by applicable law. You can redistribute
7+
" it and/or modify it under the terms of the Do What The Fuck You
8+
" Want To Public License, Version 2, as published by Sam Hocevar.
9+
" See http://sam.zoy.org/wtfpl/COPYING for more details.
10+
"
11+
"============================================================================
12+
13+
if exists('g:loaded_syntastic_xhtml_validator_checker')
14+
finish
15+
endif
16+
let g:loaded_syntastic_xhtml_validator_checker = 1
17+
18+
call g:SyntasticRegistry.CreateAndRegisterChecker({
19+
\ 'filetype': 'xhtml',
20+
\ 'name': 'validator',
21+
\ 'redirect': 'html/validator'})
22+
23+
" vim: set sw=4 sts=4 et fdm=marker:

0 commit comments

Comments
 (0)