s/gcc/closurecompiler/

This commit is contained in:
Motohiro Takayama 2012-05-06 11:10:57 -07:00
parent 2d0bb48dd7
commit 3e6687e479
2 changed files with 4 additions and 4 deletions

View File

@ -19,5 +19,5 @@ if exists("loaded_javascript_syntax_checker")
endif endif
let loaded_javascript_syntax_checker = 1 let loaded_javascript_syntax_checker = 1
let s:supported_checkers = ["gjslint", "jslint", "jsl", "jshint", "gcc"] let s:supported_checkers = ["gjslint", "jslint", "jsl", "jshint", "closurecompiler"]
call SyntasticLoadChecker(s:supported_checkers, 'javascript') call SyntasticLoadChecker(s:supported_checkers, 'javascript')

View File

@ -1,5 +1,5 @@
"============================================================================ "============================================================================
"File: gcc.vim "File: closurecompiler.vim
"Description: Javascript syntax checker - using Google Closure Compiler "Description: Javascript syntax checker - using Google Closure Compiler
"Maintainer: Motohiro Takayama <mootoh at gmail dot com> "Maintainer: Motohiro Takayama <mootoh at gmail dot com>
"License: This program is free software. It comes without any warranty, "License: This program is free software. It comes without any warranty,
@ -9,9 +9,9 @@
" See http://sam.zoy.org/wtfpl/COPYING for more details. " See http://sam.zoy.org/wtfpl/COPYING for more details.
"============================================================================ "============================================================================
" "
" To enable this plugin, edit the .vimc like this: " To enable this plugin, edit the .vimrc like this:
" "
" let g:syntastic_javascript_checker = "gcc" " let g:syntastic_javascript_checker = "closurecompiler"
" "
" and set the path to the Google Closure Compiler: " and set the path to the Google Closure Compiler:
" "