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

Commit 7e26d35

Browse files
committed
Merge remote-tracking branch 'origin/pr/1567'
2 parents e1217a8 + ba62f2e commit 7e26d35

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

plugin/syntastic/registry.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ let g:loaded_syntastic_registry = 1
88
let s:_DEFAULT_CHECKERS = {
99
\ 'actionscript': ['mxmlc'],
1010
\ 'ada': ['gcc'],
11-
\ 'apiblueprint': ['snowcrash'],
11+
\ 'apiblueprint': ['drafter'],
1212
\ 'applescript': ['osacompile'],
1313
\ 'asciidoc': ['asciidoc'],
1414
\ 'asm': ['gcc'],

syntax_checkers/apiblueprint/snowcrash.vim renamed to syntax_checkers/apiblueprint/drafter.vim

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"============================================================================
2-
"File: snowcrash.vim
2+
"File: drafter.vim
33
"Description: Syntax checking plugin for syntastic.vim
44
"Maintainer: LCD 47 <lcd047 at gmail dot com>
55
"License: This program is free software. It comes without any warranty,
@@ -10,19 +10,19 @@
1010
"
1111
"============================================================================
1212

13-
if exists('g:loaded_syntastic_apiblueprint_snowcrash_checker')
13+
if exists('g:loaded_syntastic_apiblueprint_drafter_checker')
1414
finish
1515
endif
16-
let g:loaded_syntastic_apiblueprint_snowcrash_checker = 1
16+
let g:loaded_syntastic_apiblueprint_drafter_checker = 1
1717

18-
if !exists('g:syntastic_apiblueprint_snowcrash_sort')
19-
let g:syntastic_apiblueprint_snowcrash_sort = 1
18+
if !exists('g:syntastic_apiblueprint_drafter_sort')
19+
let g:syntastic_apiblueprint_drafter_sort = 1
2020
endif
2121

2222
let s:save_cpo = &cpo
2323
set cpo&vim
2424

25-
function! SyntaxCheckers_apiblueprint_snowcrash_GetLocList() dict
25+
function! SyntaxCheckers_apiblueprint_drafter_GetLocList() dict
2626
let makeprg = self.makeprgBuild({ 'post_args': '-u -l' })
2727

2828
let errorformat =
@@ -58,7 +58,7 @@ endfunction
5858

5959
call g:SyntasticRegistry.CreateAndRegisterChecker({
6060
\ 'filetype': 'apiblueprint',
61-
\ 'name': 'snowcrash'})
61+
\ 'name': 'drafter'})
6262

6363
let &cpo = s:save_cpo
6464
unlet s:save_cpo

0 commit comments

Comments
 (0)