2009-07-10 21:39:39 -04:00
|
|
|
"============================================================================
|
|
|
|
"File: syntastic.vim
|
|
|
|
"Description: vim plugin for on the fly syntax checking
|
2009-12-16 05:02:36 -05:00
|
|
|
"Maintainer: Martin Grenfell <martin.grenfell at gmail dot com>
|
2010-10-28 06:13:34 -04:00
|
|
|
"Version: 1.2.0
|
|
|
|
"Last Change: 28 Oct, 2010
|
2009-07-10 21:39:39 -04:00
|
|
|
"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.
|
|
|
|
"
|
|
|
|
"============================================================================
|
|
|
|
|
2009-07-10 19:09:52 -04:00
|
|
|
if exists("g:loaded_syntastic_plugin")
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let g:loaded_syntastic_plugin = 1
|
|
|
|
|
|
|
|
let s:running_windows = has("win16") || has("win32") || has("win64")
|
|
|
|
|
2009-09-13 02:41:47 -04:00
|
|
|
if !exists("g:syntastic_enable_signs") || !has('signs')
|
2009-07-10 21:47:17 -04:00
|
|
|
let g:syntastic_enable_signs = 0
|
|
|
|
endif
|
|
|
|
|
2009-07-13 07:12:18 -04:00
|
|
|
if !exists("g:syntastic_auto_loc_list")
|
|
|
|
let g:syntastic_auto_loc_list = 0
|
2009-07-13 05:38:50 -04:00
|
|
|
endif
|
|
|
|
|
2009-07-19 22:59:54 -04:00
|
|
|
if !exists("g:syntastic_quiet_warnings")
|
|
|
|
let g:syntastic_quiet_warnings = 0
|
|
|
|
endif
|
|
|
|
|
2009-09-20 06:45:06 -04:00
|
|
|
if !exists("g:syntastic_disabled_filetypes")
|
|
|
|
let g:syntastic_disabled_filetypes = []
|
|
|
|
endif
|
|
|
|
|
2009-07-10 19:09:52 -04:00
|
|
|
"load all the syntax checkers
|
|
|
|
runtime! syntax_checkers/*.vim
|
|
|
|
|
2009-07-11 20:13:06 -04:00
|
|
|
"refresh and redraw all the error info for this buf when saving or reading
|
|
|
|
autocmd bufreadpost,bufwritepost * call s:UpdateErrors()
|
2009-07-10 19:09:52 -04:00
|
|
|
function! s:UpdateErrors()
|
|
|
|
call s:CacheErrors()
|
2009-07-10 21:47:17 -04:00
|
|
|
|
|
|
|
if g:syntastic_enable_signs
|
2009-07-13 21:46:56 -04:00
|
|
|
call s:RefreshSigns()
|
2009-07-10 21:47:17 -04:00
|
|
|
endif
|
2009-07-13 05:38:50 -04:00
|
|
|
|
2009-07-13 07:12:18 -04:00
|
|
|
if g:syntastic_auto_loc_list
|
2009-07-19 22:59:54 -04:00
|
|
|
if s:BufHasErrorsOrWarningsToDisplay()
|
2009-07-13 07:12:18 -04:00
|
|
|
call s:ShowLocList()
|
|
|
|
else
|
2009-07-13 07:23:04 -04:00
|
|
|
"TODO: this will close the loc list window if one was opened by
|
|
|
|
"something other than syntastic
|
2009-07-13 07:12:18 -04:00
|
|
|
lclose
|
|
|
|
endif
|
2009-07-13 05:38:50 -04:00
|
|
|
endif
|
2009-07-10 19:09:52 -04:00
|
|
|
endfunction
|
|
|
|
|
2009-07-10 19:55:51 -04:00
|
|
|
"detect and cache all syntax errors in this buffer
|
|
|
|
"
|
2009-07-13 07:12:18 -04:00
|
|
|
"depends on a function called SyntaxCheckers_{&ft}_GetLocList() existing
|
2009-07-10 19:55:51 -04:00
|
|
|
"elsewhere
|
2009-07-10 19:09:52 -04:00
|
|
|
function! s:CacheErrors()
|
2009-07-13 07:12:18 -04:00
|
|
|
let b:syntastic_loclist = []
|
2009-07-10 19:09:52 -04:00
|
|
|
|
2009-09-20 06:45:06 -04:00
|
|
|
if filereadable(expand("%"))
|
|
|
|
for ft in split(&ft, '\.')
|
|
|
|
if s:Checkable(ft)
|
|
|
|
let b:syntastic_loclist = extend(b:syntastic_loclist, SyntaxCheckers_{ft}_GetLocList())
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
endif
|
2009-07-10 19:09:52 -04:00
|
|
|
endfunction
|
|
|
|
|
2009-07-17 00:13:27 -04:00
|
|
|
"return true if there are cached errors/warnings for this buf
|
2009-07-16 23:51:48 -04:00
|
|
|
function! s:BufHasErrorsOrWarnings()
|
2009-07-13 07:12:18 -04:00
|
|
|
return exists("b:syntastic_loclist") && !empty(b:syntastic_loclist)
|
2009-07-10 19:09:52 -04:00
|
|
|
endfunction
|
|
|
|
|
2009-07-17 00:13:27 -04:00
|
|
|
"return true if there are cached errors for this buf
|
2009-07-16 23:51:48 -04:00
|
|
|
function! s:BufHasErrors()
|
2009-07-19 22:59:54 -04:00
|
|
|
return len(s:ErrorsForType('E')) > 0
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:BufHasErrorsOrWarningsToDisplay()
|
|
|
|
return s:BufHasErrors() || (!g:syntastic_quiet_warnings && s:BufHasErrorsOrWarnings())
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:ErrorsForType(type)
|
|
|
|
if !exists("b:syntastic_loclist")
|
|
|
|
return []
|
2009-07-16 23:51:48 -04:00
|
|
|
endif
|
2009-07-19 22:59:54 -04:00
|
|
|
return filter(copy(b:syntastic_loclist), 'v:val["type"] ==# "' . a:type . '"')
|
2009-07-16 23:51:48 -04:00
|
|
|
endfunction
|
|
|
|
|
2009-09-13 02:41:47 -04:00
|
|
|
if g:syntastic_enable_signs
|
|
|
|
"use >> to display syntax errors in the sign column
|
|
|
|
sign define SyntasticError text=>> texthl=error
|
|
|
|
sign define SyntasticWarning text=>> texthl=todo
|
|
|
|
endif
|
2009-07-10 19:55:51 -04:00
|
|
|
|
|
|
|
"start counting sign ids at 5000, start here to hopefully avoid conflicting
|
2009-07-13 07:13:22 -04:00
|
|
|
"with any other code that places signs (not sure if this precaution is
|
2009-07-10 19:55:51 -04:00
|
|
|
"actually needed)
|
2009-07-10 19:09:52 -04:00
|
|
|
let s:first_sign_id = 5000
|
|
|
|
let s:next_sign_id = s:first_sign_id
|
|
|
|
|
2009-07-13 22:10:47 -04:00
|
|
|
"place signs by all syntax errs in the buffer
|
2009-07-10 19:09:52 -04:00
|
|
|
function s:SignErrors()
|
2009-07-19 22:59:54 -04:00
|
|
|
if s:BufHasErrorsOrWarningsToDisplay()
|
2009-07-13 07:12:18 -04:00
|
|
|
for i in b:syntastic_loclist
|
2010-09-10 05:20:04 -04:00
|
|
|
if i['bufnr'] != bufnr("")
|
|
|
|
continue
|
|
|
|
endif
|
|
|
|
|
2009-07-13 22:10:47 -04:00
|
|
|
let sign_type = 'SyntasticError'
|
|
|
|
if i['type'] == 'W'
|
|
|
|
let sign_type = 'SyntasticWarning'
|
|
|
|
endif
|
|
|
|
|
|
|
|
exec "sign place ". s:next_sign_id ." line=". i['lnum'] ." name=". sign_type ." file=". expand("%:p")
|
2009-07-10 19:09:52 -04:00
|
|
|
call add(s:BufSignIds(), s:next_sign_id)
|
|
|
|
let s:next_sign_id += 1
|
|
|
|
endfor
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2009-07-13 21:46:56 -04:00
|
|
|
"remove the signs with the given ids from this buffer
|
|
|
|
function! s:RemoveSigns(ids)
|
|
|
|
for i in a:ids
|
2009-07-10 19:09:52 -04:00
|
|
|
exec "sign unplace " . i
|
2009-07-13 21:46:56 -04:00
|
|
|
call remove(s:BufSignIds(), index(s:BufSignIds(), i))
|
2009-07-10 19:09:52 -04:00
|
|
|
endfor
|
|
|
|
endfunction
|
|
|
|
|
2009-07-10 19:55:51 -04:00
|
|
|
"get all the ids of the SyntaxError signs in the buffer
|
2009-07-10 19:09:52 -04:00
|
|
|
function! s:BufSignIds()
|
|
|
|
if !exists("b:syntastic_sign_ids")
|
|
|
|
let b:syntastic_sign_ids = []
|
|
|
|
endif
|
|
|
|
return b:syntastic_sign_ids
|
|
|
|
endfunction
|
|
|
|
|
2009-07-13 21:46:56 -04:00
|
|
|
"update the error signs
|
|
|
|
function! s:RefreshSigns()
|
|
|
|
let old_signs = copy(s:BufSignIds())
|
|
|
|
call s:SignErrors()
|
|
|
|
call s:RemoveSigns(old_signs)
|
|
|
|
let s:first_sign_id = s:next_sign_id
|
|
|
|
endfunction
|
|
|
|
|
2009-07-13 07:12:18 -04:00
|
|
|
"display the cached errors for this buf in the location list
|
|
|
|
function! s:ShowLocList()
|
|
|
|
if exists("b:syntastic_loclist")
|
|
|
|
call setloclist(0, b:syntastic_loclist)
|
2009-09-13 20:39:27 -04:00
|
|
|
let num = winnr()
|
2009-07-13 07:12:18 -04:00
|
|
|
lopen
|
2009-09-13 20:39:27 -04:00
|
|
|
if num != winnr()
|
|
|
|
wincmd p
|
|
|
|
endif
|
2009-07-10 19:09:52 -04:00
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2009-07-13 07:12:18 -04:00
|
|
|
command Errors call s:ShowLocList()
|
2009-07-10 19:55:51 -04:00
|
|
|
|
|
|
|
"return [syntax:X(Y)] if syntax errors are detected in the buffer, where X is the
|
|
|
|
"line number of the first error and Y is the number of errors detected. (Y) is
|
|
|
|
"only displayed if > 1 errors are detected
|
|
|
|
"
|
|
|
|
"return '' if no errors are cached for the buffer
|
|
|
|
function! SyntasticStatuslineFlag()
|
2009-07-19 22:59:54 -04:00
|
|
|
if s:BufHasErrorsOrWarningsToDisplay()
|
|
|
|
|
2009-07-13 07:12:18 -04:00
|
|
|
let first_err_line = b:syntastic_loclist[0]['lnum']
|
2009-07-19 22:59:54 -04:00
|
|
|
if g:syntastic_quiet_warnings
|
|
|
|
let first_err_line = s:ErrorsForType('E')[0]['lnum']
|
2009-07-10 19:09:52 -04:00
|
|
|
endif
|
2009-07-19 22:59:54 -04:00
|
|
|
|
|
|
|
let err_count = len(b:syntastic_loclist)
|
|
|
|
if g:syntastic_quiet_warnings
|
|
|
|
let err_count = len(s:ErrorsForType('E'))
|
|
|
|
endif
|
|
|
|
|
|
|
|
let toReturn = '[syntax:' . first_err_line
|
|
|
|
|
|
|
|
if err_count > 1
|
|
|
|
let toReturn .= '(' . err_count . ')'
|
|
|
|
endif
|
|
|
|
|
|
|
|
let toReturn .= ']'
|
|
|
|
|
|
|
|
return toReturn
|
2009-07-10 19:09:52 -04:00
|
|
|
else
|
|
|
|
return ''
|
|
|
|
endif
|
|
|
|
endfunction
|
2009-07-10 19:55:51 -04:00
|
|
|
|
2009-07-15 05:28:44 -04:00
|
|
|
"A wrapper for the :lmake command. Sets up the make environment according to
|
|
|
|
"the options given, runs make, resets the environment, returns the location
|
|
|
|
"list
|
|
|
|
"
|
|
|
|
"a:options can contain the following keys:
|
|
|
|
" 'makeprg'
|
|
|
|
" 'errorformat'
|
|
|
|
"
|
|
|
|
"The corresponding options are set for the duration of the function call. They
|
|
|
|
"are set with :let, so dont escape spaces.
|
|
|
|
function! SyntasticMake(options)
|
2009-07-29 00:07:04 -04:00
|
|
|
let old_loclist = getloclist(0)
|
2009-07-15 05:28:44 -04:00
|
|
|
let old_makeprg = &makeprg
|
|
|
|
let old_shellpipe = &shellpipe
|
|
|
|
let old_errorformat = &errorformat
|
|
|
|
|
|
|
|
if !s:running_windows
|
|
|
|
"this is a hack to stop the screen needing to be ':redraw'n when
|
|
|
|
"when :lmake is run. Otherwise the screen flickers annoyingly
|
|
|
|
let &shellpipe='&>'
|
|
|
|
endif
|
|
|
|
|
|
|
|
if has_key(a:options, 'makeprg')
|
|
|
|
let &makeprg = a:options['makeprg']
|
|
|
|
endif
|
|
|
|
|
|
|
|
if has_key(a:options, 'errorformat')
|
|
|
|
let &errorformat = a:options['errorformat']
|
|
|
|
endif
|
|
|
|
|
|
|
|
silent lmake!
|
|
|
|
let errors = getloclist(0)
|
|
|
|
|
2009-07-29 00:07:04 -04:00
|
|
|
call setloclist(0, old_loclist)
|
2009-07-15 05:28:44 -04:00
|
|
|
let &makeprg = old_makeprg
|
|
|
|
let &errorformat = old_errorformat
|
|
|
|
let &shellpipe=old_shellpipe
|
|
|
|
|
|
|
|
return errors
|
|
|
|
endfunction
|
|
|
|
|
2009-09-20 06:45:06 -04:00
|
|
|
function! s:Checkable(ft)
|
|
|
|
return exists("*SyntaxCheckers_". a:ft ."_GetLocList") &&
|
|
|
|
\ index(g:syntastic_disabled_filetypes, a:ft) == -1
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
command! -nargs=? SyntasticEnable call s:Enable(<f-args>)
|
|
|
|
command! -nargs=? SyntasticDisable call s:Disable(<f-args>)
|
|
|
|
|
|
|
|
"disable syntax checking for the given filetype (defaulting to current ft)
|
|
|
|
function! s:Disable(...)
|
|
|
|
let ft = a:0 ? a:1 : &filetype
|
|
|
|
|
|
|
|
if !empty(ft) && index(g:syntastic_disabled_filetypes, ft) == -1
|
|
|
|
call add(g:syntastic_disabled_filetypes, ft)
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
"enable syntax checking for the given filetype (defaulting to current ft)
|
|
|
|
function! s:Enable(...)
|
|
|
|
let ft = a:0 ? a:1 : &filetype
|
|
|
|
|
|
|
|
let i = index(g:syntastic_disabled_filetypes, ft)
|
|
|
|
if i != -1
|
|
|
|
call remove(g:syntastic_disabled_filetypes, i)
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2009-07-10 19:55:51 -04:00
|
|
|
" vim: set et sts=4 sw=4:
|