vim: rename `nitg` checker to `nitpick`
[nit.git] / misc / vim / syntax_checkers / nit / static / gitweb.css
diff --git a/misc/vim/syntax_checkers/nit/nitg.vim b/misc/vim/syntax_checkers/nit/nitg.vim
deleted file mode 100644 (file)
index c3cdd20..0000000
+++ /dev/null
@@ -1,100 +0,0 @@
-"============================================================================
-"File:        nitg.vim
-"Description: Syntax checking plugin for syntastic.vim
-"Maintainer:  Alexis Laferrière <alexis.laf@xymus.net>
-"License:     This program is free software. It comes without any warranty,
-"             to the extent permitted by applicable law. You can redistribute
-"             it and/or modify it under the terms of the Do What The Fuck You
-"             Want To Public License, Version 2, as published by Sam Hocevar.
-"             See http://sam.zoy.org/wtfpl/COPYING for more details.
-"
-"      g:syntastic_nitg specifies custom path to compiler
-"      g:syntastic_nit_dir specifies the NIT_DIR env variable
-"      g:syntastic_nit_args specifies extra arguments to call nitg
-"      g:syntastic_nit_include_dirs lists directories to include, must be a list
-"      g:nit_main sets the main module to compile instead of the opened file
-"============================================================================
-if exists("loaded_syntastic_nit_nitg_checker")
-       finish
-endif
-let loaded_syntastic_nit_nitg_checker = 1
-
-" check if nitg is accessible
-if exists('g:syntastic_nitg')
-       let s:nitg = g:syntastic_nitg
-else
-       let s:nitg = "nitpick"
-endif
-
-if !executable(s:nitg)
-       if exists('g:syntastic_nitg')
-               echo "Syntastic for Nit error: Custom tool cannot be found at: " . g:syntastic_nitg
-       endif
-       finish
-endif
-
-function! SyntaxCheckers_nit_nitg_IsAvailable()
-    return executable(expand(s:nitg))
-endfunction
-
-function! SyntaxCheckers_nit_nitg_GetLocList()
-       let makeprg = s:nitg . " --no-color -W --vim-autocomplete "
-
-       " custom NIT_DIR
-       if exists('g:syntastic_nit_dir')
-               let makeprg = "NIT_DIR=" . g:syntastic_nit_dir . " " . makeprg
-       endif
-
-       " custom options for nit compiler
-       if exists('g:syntastic_nit_options')
-               let makeprg .= " " . g:syntastic_nit_options
-       endif
-
-       " custom dirs to include for compiler
-       if exists('g:syntastic_nit_include_dirs')
-               for d in g:syntastic_nit_include_dirs
-                       let makeprg .= " -I " . d
-               endfor
-       end
-
-       " alternative main module
-       if exists('g:nit_main')
-               let makeprg .= " " . g:nit_main
-       else
-               let makeprg .= " " . shellescape(expand("%"))
-       end
-
-       " pipe stderr
-       let makeprg .= " 2>&1 "
-
-       " possible combinations of error messages
-       let ef_start = [ '%f:%l\,%c--%*[0-9]:',
-                                  \ '%f:%l\,%c--%*[0-9]\,%*[0-9]:',
-                                  \ '%f:%l\,%c:' ]
-       let ef_type = [ ' %tarning: ',
-                                 \ ' %tocumentation warning: ',
-                                 \ '' ]
-
-       " generate errorformat from combinations
-       let errorformat = ""
-       for s in ef_start
-               for t in ef_type
-                       let errorformat .= s . t . '%m,'
-               endfor
-       endfor
-
-       let loclist = SyntasticMake({ 'makeprg': makeprg, 'errorformat': errorformat, 'postprocess': ['guards'] })
-
-       for e in loclist
-               if e['type'] ==? 'd' " is a documentation warning
-                       let e['type'] = 'w'
-                       let e['subtype'] = 'Style'
-               endif
-       endfor
-
-       return loclist
-endfunction
-
-call g:SyntasticRegistry.CreateAndRegisterChecker({
-    \ 'filetype': 'nit',
-    \ 'name': 'nitg'})