This repository was archived by the owner on Sep 20, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +47
-1
lines changed Expand file tree Collapse file tree 3 files changed +47
-1
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ if has('reltime')
19
19
lockvar ! g: _SYNTASTIC_START
20
20
endif
21
21
22
- let g: _SYNTASTIC_VERSION = ' 3.9.0-24 '
22
+ let g: _SYNTASTIC_VERSION = ' 3.9.0-25 '
23
23
lockvar g: _SYNTASTIC_VERSION
24
24
25
25
" Sanity checks {{{1
Original file line number Diff line number Diff line change
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:
Original file line number Diff line number Diff line change
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:
You can’t perform that action at this time.
0 commit comments