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>
|
2012-02-16 12:11:03 -05:00
|
|
|
"Version: 2.3.0
|
|
|
|
"Last Change: 16 Feb, 2012
|
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
|
|
|
|
|
2013-03-28 19:00:08 -04:00
|
|
|
runtime! plugin/syntastic/*.vim
|
2013-01-23 19:01:30 -05:00
|
|
|
|
2012-05-08 08:31:20 -04:00
|
|
|
let s:running_windows = has("win16") || has("win32")
|
2009-07-10 19:09:52 -04:00
|
|
|
|
2011-12-07 08:26:19 -05:00
|
|
|
if !exists("g:syntastic_enable_balloons")
|
2011-12-09 07:56:41 -05:00
|
|
|
let g:syntastic_enable_balloons = 1
|
|
|
|
endif
|
|
|
|
if !has('balloon_eval')
|
|
|
|
let g:syntastic_enable_balloons = 0
|
2011-05-02 19:21:16 -04:00
|
|
|
endif
|
|
|
|
|
2011-12-08 17:23:51 -05:00
|
|
|
if !exists("g:syntastic_enable_highlighting")
|
|
|
|
let g:syntastic_enable_highlighting = 1
|
|
|
|
endif
|
|
|
|
|
2012-10-01 10:10:53 -04:00
|
|
|
" highlighting requires getmatches introduced in 7.1.040
|
2012-11-17 15:15:45 -05:00
|
|
|
if v:version < 701 || (v:version == 701 && !has('patch040'))
|
|
|
|
let g:syntastic_enable_highlighting = 0
|
2012-10-01 10:10:53 -04:00
|
|
|
endif
|
|
|
|
|
2011-12-09 20:15:24 -05:00
|
|
|
if !exists("g:syntastic_echo_current_error")
|
|
|
|
let g:syntastic_echo_current_error = 1
|
|
|
|
endif
|
|
|
|
|
2009-07-13 07:12:18 -04:00
|
|
|
if !exists("g:syntastic_auto_loc_list")
|
2011-11-30 14:56:27 -05:00
|
|
|
let g:syntastic_auto_loc_list = 2
|
2009-07-13 05:38:50 -04:00
|
|
|
endif
|
|
|
|
|
2013-03-21 13:44:19 -04:00
|
|
|
if !exists("g:syntastic_always_populate_loc_list")
|
|
|
|
let g:syntastic_always_populate_loc_list = 0
|
|
|
|
endif
|
|
|
|
|
2011-01-04 17:27:47 -05:00
|
|
|
if !exists("g:syntastic_auto_jump")
|
|
|
|
let syntastic_auto_jump=0
|
|
|
|
endif
|
|
|
|
|
2009-07-19 22:59:54 -04:00
|
|
|
if !exists("g:syntastic_quiet_warnings")
|
|
|
|
let g:syntastic_quiet_warnings = 0
|
|
|
|
endif
|
|
|
|
|
2011-02-19 02:10:20 -05:00
|
|
|
if !exists("g:syntastic_stl_format")
|
|
|
|
let g:syntastic_stl_format = '[Syntax: line:%F (%t)]'
|
|
|
|
endif
|
|
|
|
|
2011-12-24 04:44:01 -05:00
|
|
|
if !exists("g:syntastic_check_on_open")
|
|
|
|
let g:syntastic_check_on_open = 0
|
|
|
|
endif
|
|
|
|
|
2012-02-10 12:56:32 -05:00
|
|
|
if !exists("g:syntastic_loc_list_height")
|
|
|
|
let g:syntastic_loc_list_height = 10
|
|
|
|
endif
|
|
|
|
|
2013-01-23 19:01:30 -05:00
|
|
|
let s:registry = g:SyntasticRegistry.Instance()
|
2013-03-21 13:19:59 -04:00
|
|
|
let s:signer = g:SyntasticSigner.New()
|
|
|
|
call s:signer.SetUpSignStyles()
|
2013-03-22 18:50:47 -04:00
|
|
|
let s:modemap = g:SyntasticModeMap.Instance()
|
2013-01-23 19:01:30 -05:00
|
|
|
|
2013-02-01 02:36:41 -05:00
|
|
|
function! s:CompleteCheckerName(argLead, cmdLine, cursorPos)
|
|
|
|
let checker_names = []
|
2013-02-01 09:38:53 -05:00
|
|
|
for ft in s:CurrentFiletypes()
|
2013-02-01 02:36:41 -05:00
|
|
|
for checker in s:registry.availableCheckersFor(ft)
|
2013-02-01 10:01:31 -05:00
|
|
|
call add(checker_names, checker.name())
|
2013-02-01 02:36:41 -05:00
|
|
|
endfor
|
|
|
|
endfor
|
|
|
|
return join(checker_names, "\n")
|
|
|
|
endfunction
|
|
|
|
|
2011-12-09 18:49:21 -05:00
|
|
|
command! SyntasticToggleMode call s:ToggleMode()
|
2013-02-01 02:36:41 -05:00
|
|
|
command! -nargs=? -complete=custom,s:CompleteCheckerName SyntasticCheck call s:UpdateErrors(0, <f-args>) <bar> call s:Redraw()
|
2011-12-02 04:36:11 -05:00
|
|
|
command! Errors call s:ShowLocList()
|
2011-11-28 18:44:40 -05:00
|
|
|
|
2011-12-09 19:18:28 -05:00
|
|
|
highlight link SyntasticError SpellBad
|
|
|
|
highlight link SyntasticWarning SpellCap
|
|
|
|
|
2011-12-09 20:15:24 -05:00
|
|
|
augroup syntastic
|
|
|
|
if g:syntastic_echo_current_error
|
|
|
|
autocmd cursormoved * call s:EchoCurrentError()
|
|
|
|
endif
|
2011-12-09 20:18:20 -05:00
|
|
|
|
2011-12-24 04:44:01 -05:00
|
|
|
autocmd BufReadPost * if g:syntastic_check_on_open | call s:UpdateErrors(1) | endif
|
2011-12-23 19:33:07 -05:00
|
|
|
autocmd BufWritePost * call s:UpdateErrors(1)
|
2011-12-23 18:46:39 -05:00
|
|
|
|
2011-12-16 07:30:56 -05:00
|
|
|
autocmd BufWinEnter * if empty(&bt) | call s:AutoToggleLocList() | endif
|
2012-05-26 08:19:28 -04:00
|
|
|
autocmd BufEnter * if &bt=='quickfix' && !empty(getloclist(0)) && !bufloaded(getloclist(0)[0].bufnr) | call s:HideLocList() | endif
|
2011-12-09 20:15:24 -05:00
|
|
|
augroup END
|
|
|
|
|
|
|
|
|
2009-07-11 20:13:06 -04:00
|
|
|
"refresh and redraw all the error info for this buf when saving or reading
|
2013-02-01 02:20:24 -05:00
|
|
|
function! s:UpdateErrors(auto_invoked, ...)
|
2013-04-03 04:45:06 -04:00
|
|
|
if s:SkipFile()
|
2011-01-11 17:33:29 -05:00
|
|
|
return
|
|
|
|
endif
|
2011-11-28 18:44:40 -05:00
|
|
|
|
2013-03-22 18:50:47 -04:00
|
|
|
if !a:auto_invoked || s:modemap.allowsAutoChecking(&filetype)
|
2013-02-01 02:20:24 -05:00
|
|
|
if a:0 >= 1
|
|
|
|
call s:CacheErrors(a:1)
|
|
|
|
else
|
|
|
|
call s:CacheErrors()
|
|
|
|
endif
|
2011-11-28 18:44:40 -05:00
|
|
|
end
|
2009-07-10 21:47:17 -04:00
|
|
|
|
2011-12-02 04:53:49 -05:00
|
|
|
if g:syntastic_enable_balloons
|
|
|
|
call s:RefreshBalloons()
|
2011-05-02 19:21:16 -04:00
|
|
|
endif
|
|
|
|
|
2009-07-10 21:47:17 -04:00
|
|
|
if g:syntastic_enable_signs
|
2013-03-21 13:19:59 -04:00
|
|
|
call s:signer.refreshSigns(s:LocList())
|
2009-07-10 21:47:17 -04:00
|
|
|
endif
|
2009-07-13 05:38:50 -04:00
|
|
|
|
2012-10-01 10:10:53 -04:00
|
|
|
if g:syntastic_enable_highlighting
|
2012-09-27 08:44:23 -04:00
|
|
|
call s:HighlightErrors()
|
2012-03-02 05:05:15 -05:00
|
|
|
endif
|
|
|
|
|
2013-02-03 13:36:55 -05:00
|
|
|
let loclist = s:LocList()
|
2013-03-21 13:44:19 -04:00
|
|
|
if g:syntastic_always_populate_loc_list && loclist.hasErrorsOrWarningsToDisplay()
|
2013-04-03 14:53:56 -04:00
|
|
|
call setloclist(0, loclist.filteredRaw())
|
2013-03-21 13:44:19 -04:00
|
|
|
endif
|
|
|
|
|
2013-02-01 09:16:04 -05:00
|
|
|
if g:syntastic_auto_jump && loclist.hasErrorsOrWarningsToDisplay()
|
2013-04-03 14:53:56 -04:00
|
|
|
call setloclist(0, loclist.filteredRaw())
|
2011-12-23 08:56:49 -05:00
|
|
|
silent! ll
|
|
|
|
endif
|
|
|
|
|
2011-12-16 07:30:56 -05:00
|
|
|
call s:AutoToggleLocList()
|
|
|
|
endfunction
|
|
|
|
|
2011-12-23 08:56:49 -05:00
|
|
|
"automatically open/close the location list window depending on the users
|
|
|
|
"config and buffer error state
|
2011-12-24 06:05:51 -05:00
|
|
|
function! s:AutoToggleLocList()
|
2013-02-01 09:16:04 -05:00
|
|
|
let loclist = s:LocList()
|
|
|
|
if loclist.hasErrorsOrWarningsToDisplay()
|
2011-12-23 08:56:49 -05:00
|
|
|
if g:syntastic_auto_loc_list == 1
|
|
|
|
call s:ShowLocList()
|
2011-01-04 17:27:47 -05:00
|
|
|
endif
|
2011-12-23 08:56:49 -05:00
|
|
|
else
|
|
|
|
if g:syntastic_auto_loc_list > 0
|
2011-01-04 17:26:17 -05:00
|
|
|
|
2011-12-17 14:08:07 -05:00
|
|
|
"TODO: this will close the loc list window if one was opened by
|
|
|
|
"something other than syntastic
|
|
|
|
lclose
|
2009-07-13 07:12:18 -04:00
|
|
|
endif
|
2009-07-13 05:38:50 -04:00
|
|
|
endif
|
2009-07-10 19:09:52 -04:00
|
|
|
endfunction
|
|
|
|
|
2011-12-16 11:48:26 -05:00
|
|
|
"lazy init the loc list for the current buffer
|
|
|
|
function! s:LocList()
|
|
|
|
if !exists("b:syntastic_loclist")
|
2013-02-01 09:16:04 -05:00
|
|
|
let b:syntastic_loclist = g:SyntasticLoclist.New([])
|
2011-12-16 11:48:26 -05:00
|
|
|
endif
|
|
|
|
return b:syntastic_loclist
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
"clear the loc list for the buffer
|
2012-02-18 10:54:22 -05:00
|
|
|
function! s:ClearCache()
|
2013-02-01 09:16:04 -05:00
|
|
|
unlet! b:syntastic_loclist
|
2011-12-16 11:48:26 -05:00
|
|
|
endfunction
|
2011-12-16 08:28:49 -05:00
|
|
|
|
2013-02-01 09:38:53 -05:00
|
|
|
function! s:CurrentFiletypes()
|
|
|
|
"sub - for _ in filetypes otherwise we cant name syntax checker
|
|
|
|
"functions legally for filetypes like "gentoo-metadata"
|
|
|
|
let fts = substitute(&ft, '-', '_', 'g')
|
|
|
|
return split(fts, '\.')
|
|
|
|
endfunction
|
|
|
|
|
2009-07-10 19:55:51 -04:00
|
|
|
"detect and cache all syntax errors in this buffer
|
2013-02-01 02:20:24 -05:00
|
|
|
function! s:CacheErrors(...)
|
2012-02-18 10:54:22 -05:00
|
|
|
call s:ClearCache()
|
2013-02-01 09:16:04 -05:00
|
|
|
let newLoclist = g:SyntasticLoclist.New([])
|
2009-07-10 19:09:52 -04:00
|
|
|
|
2013-04-02 08:30:58 -04:00
|
|
|
if !s:SkipFile()
|
2013-02-01 09:38:53 -05:00
|
|
|
for ft in s:CurrentFiletypes()
|
2011-12-13 18:28:11 -05:00
|
|
|
|
2013-02-01 09:38:53 -05:00
|
|
|
if a:0
|
|
|
|
let checker = s:registry.getChecker(ft, a:1)
|
|
|
|
if !empty(checker)
|
|
|
|
let checkers = [checker]
|
|
|
|
endif
|
2013-02-01 02:20:24 -05:00
|
|
|
else
|
|
|
|
let checkers = s:registry.getActiveCheckers(ft)
|
|
|
|
endif
|
2013-02-01 09:38:53 -05:00
|
|
|
|
2013-01-23 19:01:30 -05:00
|
|
|
for checker in checkers
|
2013-02-01 09:16:04 -05:00
|
|
|
let loclist = checker.getLocList()
|
2013-01-23 19:01:30 -05:00
|
|
|
|
2013-02-01 09:16:04 -05:00
|
|
|
if !loclist.isEmpty()
|
|
|
|
let newLoclist = newLoclist.extend(loclist)
|
2013-01-23 19:01:30 -05:00
|
|
|
|
|
|
|
"only get errors from one checker at a time
|
|
|
|
break
|
|
|
|
endif
|
|
|
|
endfor
|
2011-12-21 18:52:58 -05:00
|
|
|
endfor
|
2009-09-20 06:45:06 -04:00
|
|
|
endif
|
2013-02-01 09:16:04 -05:00
|
|
|
|
|
|
|
let b:syntastic_loclist = newLoclist
|
2009-07-10 19:09:52 -04:00
|
|
|
endfunction
|
|
|
|
|
2011-11-28 18:44:40 -05:00
|
|
|
function! s:ToggleMode()
|
2013-03-22 18:50:47 -04:00
|
|
|
call s:modemap.toggleMode()
|
2012-02-18 10:54:22 -05:00
|
|
|
call s:ClearCache()
|
2011-12-15 08:42:42 -05:00
|
|
|
call s:UpdateErrors(1)
|
2013-03-22 18:50:47 -04:00
|
|
|
call s:modemap.echoMode()
|
2011-11-28 18:44:40 -05:00
|
|
|
endfunction
|
|
|
|
|
2009-07-13 07:12:18 -04:00
|
|
|
"display the cached errors for this buf in the location list
|
|
|
|
function! s:ShowLocList()
|
2013-02-01 09:16:04 -05:00
|
|
|
let loclist = s:LocList()
|
2013-04-03 14:53:56 -04:00
|
|
|
if loclist.hasErrorsOrWarningsToDisplay()
|
|
|
|
call setloclist(0, loclist.filteredRaw())
|
2009-09-13 20:39:27 -04:00
|
|
|
let num = winnr()
|
2012-02-10 12:56:32 -05:00
|
|
|
exec "lopen " . g:syntastic_loc_list_height
|
2009-09-13 20:39:27 -04:00
|
|
|
if num != winnr()
|
|
|
|
wincmd p
|
|
|
|
endif
|
2009-07-10 19:09:52 -04:00
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2012-05-26 08:19:28 -04:00
|
|
|
function! s:HideLocList()
|
|
|
|
if len(filter( range(1,bufnr('$')), 'buflisted(v:val) && bufloaded(v:val)' )) == 1
|
|
|
|
quit
|
|
|
|
else
|
|
|
|
lclose
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2012-03-02 05:05:15 -05:00
|
|
|
"highlight the current errors using matchadd()
|
|
|
|
"
|
2013-03-02 07:33:04 -05:00
|
|
|
"The function `Syntastic_{filetype}_{checker}_GetHighlightRegex` is used
|
|
|
|
"to override default highlighting. This function must take one arg (an
|
|
|
|
"error item) and return a regex to match that item in the buffer.
|
2012-09-27 08:44:23 -04:00
|
|
|
function! s:HighlightErrors()
|
2012-03-02 05:05:15 -05:00
|
|
|
call s:ClearErrorHighlights()
|
2013-02-01 09:16:04 -05:00
|
|
|
let loclist = s:LocList()
|
2012-03-02 05:05:15 -05:00
|
|
|
|
|
|
|
let fts = substitute(&ft, '-', '_', 'g')
|
|
|
|
for ft in split(fts, '\.')
|
|
|
|
|
2013-04-03 14:53:56 -04:00
|
|
|
for item in loclist.filteredRaw()
|
2012-03-02 05:05:15 -05:00
|
|
|
let group = item['type'] == 'E' ? 'SyntasticError' : 'SyntasticWarning'
|
2013-03-02 07:33:04 -05:00
|
|
|
|
2013-03-03 13:08:54 -05:00
|
|
|
if has_key(item, 'hl')
|
|
|
|
call matchadd(group, '\%' . item['lnum'] . 'l' . item['hl'])
|
2013-03-02 07:33:04 -05:00
|
|
|
elseif get(item, 'col')
|
2012-03-02 05:05:15 -05:00
|
|
|
let lastcol = col([item['lnum'], '$'])
|
|
|
|
let lcol = min([lastcol, item['col']])
|
2013-03-28 19:27:43 -04:00
|
|
|
|
|
|
|
"a bug in vim can sometimes cause there to be no 'vcol' key,
|
|
|
|
"so check for its existence
|
|
|
|
let coltype = has_key(item, 'vcol') && item['vcol'] ? 'v' : 'c'
|
|
|
|
|
|
|
|
call matchadd(group, '\%' . item['lnum'] . 'l\%' . lcol . coltype)
|
2012-03-02 05:05:15 -05:00
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
endfor
|
|
|
|
endfunction
|
|
|
|
|
2011-12-08 15:34:11 -05:00
|
|
|
"remove all error highlights from the window
|
2011-11-30 14:23:31 -05:00
|
|
|
function! s:ClearErrorHighlights()
|
2011-12-09 19:18:28 -05:00
|
|
|
for match in getmatches()
|
|
|
|
if stridx(match['group'], 'Syntastic') == 0
|
|
|
|
call matchdelete(match['id'])
|
|
|
|
endif
|
2011-11-30 14:23:31 -05:00
|
|
|
endfor
|
|
|
|
endfunction
|
|
|
|
|
2011-12-08 15:34:11 -05:00
|
|
|
"set up error ballons for the current set of errors
|
|
|
|
function! s:RefreshBalloons()
|
|
|
|
let b:syntastic_balloons = {}
|
2013-02-01 09:16:04 -05:00
|
|
|
let loclist = s:LocList()
|
|
|
|
if loclist.hasErrorsOrWarningsToDisplay()
|
2013-04-03 14:53:56 -04:00
|
|
|
for i in loclist.filteredRaw()
|
2011-12-08 15:34:11 -05:00
|
|
|
let b:syntastic_balloons[i['lnum']] = i['text']
|
|
|
|
endfor
|
|
|
|
set beval bexpr=SyntasticErrorBalloonExpr()
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2011-12-09 20:15:24 -05:00
|
|
|
"print as much of a:msg as possible without "Press Enter" prompt appearing
|
|
|
|
function! s:WideMsg(msg)
|
|
|
|
let old_ruler = &ruler
|
|
|
|
let old_showcmd = &showcmd
|
|
|
|
|
2012-10-25 20:01:31 -04:00
|
|
|
"convert tabs to spaces so that the tabs count towards the window width
|
|
|
|
"as the proper amount of characters
|
2012-10-25 17:20:07 -04:00
|
|
|
let msg = substitute(a:msg, "\t", repeat(" ", &tabstop), "g")
|
|
|
|
let msg = strpart(msg, 0, winwidth(0)-1)
|
2011-12-11 04:26:55 -05:00
|
|
|
|
|
|
|
"This is here because it is possible for some error messages to begin with
|
|
|
|
"\n which will cause a "press enter" prompt. I have noticed this in the
|
|
|
|
"javascript:jshint checker and have been unable to figure out why it
|
|
|
|
"happens
|
|
|
|
let msg = substitute(msg, "\n", "", "g")
|
|
|
|
|
2011-12-09 20:15:24 -05:00
|
|
|
set noruler noshowcmd
|
|
|
|
redraw
|
2011-12-11 04:26:55 -05:00
|
|
|
|
|
|
|
echo msg
|
2011-12-09 20:15:24 -05:00
|
|
|
|
|
|
|
let &ruler=old_ruler
|
|
|
|
let &showcmd=old_showcmd
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
"echo out the first error we find for the current line in the cmd window
|
|
|
|
function! s:EchoCurrentError()
|
2013-02-01 09:16:04 -05:00
|
|
|
let loclist = s:LocList()
|
2011-12-09 20:15:24 -05:00
|
|
|
"If we have an error or warning at the current line, show it
|
2013-02-01 09:16:04 -05:00
|
|
|
let errors = loclist.filter({'lnum': line("."), "type": 'e'})
|
|
|
|
let warnings = loclist.filter({'lnum': line("."), "type": 'w'})
|
2011-12-15 18:08:39 -05:00
|
|
|
|
|
|
|
let b:syntastic_echoing_error = len(errors) || len(warnings)
|
|
|
|
if len(errors)
|
|
|
|
return s:WideMsg(errors[0]['text'])
|
|
|
|
endif
|
|
|
|
if len(warnings)
|
|
|
|
return s:WideMsg(warnings[0]['text'])
|
|
|
|
endif
|
2011-12-09 20:15:24 -05:00
|
|
|
|
|
|
|
"Otherwise, clear the status line
|
2011-12-19 18:02:50 -05:00
|
|
|
if b:syntastic_echoing_error
|
2011-12-11 04:32:36 -05:00
|
|
|
echo
|
2011-12-19 18:02:50 -05:00
|
|
|
let b:syntastic_echoing_error = 0
|
2011-12-11 04:32:36 -05:00
|
|
|
endif
|
2011-12-09 20:15:24 -05:00
|
|
|
endfunction
|
|
|
|
|
2012-07-01 17:48:54 -04:00
|
|
|
"the script changes &shellpipe and &shell to stop the screen flicking when
|
|
|
|
"shelling out to syntax checkers. Not all OSs support the hacks though
|
|
|
|
function! s:OSSupportsShellpipeHack()
|
2013-04-06 14:58:38 -04:00
|
|
|
return !s:running_windows && executable('/bin/bash') && (s:uname() !~ "FreeBSD") && (s:uname() !~ "OpenBSD")
|
2012-10-23 18:02:00 -04:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:IsRedrawRequiredAfterMake()
|
|
|
|
return !s:running_windows && (s:uname() =~ "FreeBSD" || s:uname() =~ "OpenBSD")
|
2012-07-01 17:48:54 -04:00
|
|
|
endfunction
|
|
|
|
|
2013-01-16 04:42:22 -05:00
|
|
|
"Redraw in a way that doesnt make the screen flicker or leave anomalies behind.
|
|
|
|
"
|
|
|
|
"Some terminal versions of vim require `redraw!` - otherwise there can be
|
|
|
|
"random anomalies left behind.
|
|
|
|
"
|
|
|
|
"However, on some versions of gvim using `redraw!` causes the screen to
|
|
|
|
"flicker - so use redraw.
|
|
|
|
function! s:Redraw()
|
2013-03-15 20:20:41 -04:00
|
|
|
if has('gui_running') || has('gui_macvim')
|
2013-01-16 04:42:22 -05:00
|
|
|
redraw
|
|
|
|
else
|
|
|
|
redraw!
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2013-04-02 08:30:58 -04:00
|
|
|
" Skip running in special buffers
|
|
|
|
function! s:SkipFile()
|
2013-04-03 04:45:06 -04:00
|
|
|
return !empty(&buftype) || !filereadable(expand('%')) || getwinvar(0, '&diff')
|
2013-04-02 08:30:58 -04:00
|
|
|
endfunction
|
|
|
|
|
2012-09-24 13:53:15 -04:00
|
|
|
function! s:uname()
|
|
|
|
if !exists('s:uname')
|
|
|
|
let s:uname = system('uname')
|
|
|
|
endif
|
|
|
|
return s:uname
|
|
|
|
endfunction
|
|
|
|
|
2011-02-19 02:10:20 -05:00
|
|
|
"return a string representing the state of buffer according to
|
|
|
|
"g:syntastic_stl_format
|
2009-07-10 19:55:51 -04:00
|
|
|
"
|
|
|
|
"return '' if no errors are cached for the buffer
|
|
|
|
function! SyntasticStatuslineFlag()
|
2013-02-01 09:16:04 -05:00
|
|
|
let loclist = s:LocList()
|
|
|
|
if loclist.hasErrorsOrWarningsToDisplay()
|
|
|
|
let errors = loclist.errors()
|
|
|
|
let warnings = loclist.warnings()
|
2009-07-19 22:59:54 -04:00
|
|
|
|
2012-02-18 10:38:27 -05:00
|
|
|
let num_errors = len(errors)
|
|
|
|
let num_warnings = len(warnings)
|
|
|
|
|
2011-02-19 02:10:20 -05:00
|
|
|
let output = g:syntastic_stl_format
|
2009-07-19 22:59:54 -04:00
|
|
|
|
2011-02-19 02:10:20 -05:00
|
|
|
"hide stuff wrapped in %E(...) unless there are errors
|
2012-02-18 10:38:27 -05:00
|
|
|
let output = substitute(output, '\C%E{\([^}]*\)}', num_errors ? '\1' : '' , 'g')
|
2009-07-19 22:59:54 -04:00
|
|
|
|
2011-02-19 02:10:20 -05:00
|
|
|
"hide stuff wrapped in %W(...) unless there are warnings
|
2012-02-18 10:38:27 -05:00
|
|
|
let output = substitute(output, '\C%W{\([^}]*\)}', num_warnings ? '\1' : '' , 'g')
|
2009-07-19 22:59:54 -04:00
|
|
|
|
2011-02-19 02:10:20 -05:00
|
|
|
"hide stuff wrapped in %B(...) unless there are both errors and warnings
|
2012-02-18 10:38:27 -05:00
|
|
|
let output = substitute(output, '\C%B{\([^}]*\)}', (num_warnings && num_errors) ? '\1' : '' , 'g')
|
2011-02-19 02:10:20 -05:00
|
|
|
|
2013-02-01 09:16:04 -05:00
|
|
|
|
2011-02-19 02:10:20 -05:00
|
|
|
"sub in the total errors/warnings/both
|
2012-02-18 10:38:27 -05:00
|
|
|
let output = substitute(output, '\C%w', num_warnings, 'g')
|
|
|
|
let output = substitute(output, '\C%e', num_errors, 'g')
|
2013-02-01 09:16:04 -05:00
|
|
|
let output = substitute(output, '\C%t', loclist.length(), 'g')
|
2011-02-19 02:10:20 -05:00
|
|
|
|
|
|
|
"first error/warning line num
|
2013-04-03 14:53:56 -04:00
|
|
|
let output = substitute(output, '\C%F', loclist.filteredRaw()[0]['lnum'], 'g')
|
2011-02-19 02:10:20 -05:00
|
|
|
|
|
|
|
"first error line num
|
2012-02-18 10:38:27 -05:00
|
|
|
let output = substitute(output, '\C%fe', num_errors ? errors[0]['lnum'] : '', 'g')
|
2009-07-19 22:59:54 -04:00
|
|
|
|
2011-02-19 02:10:20 -05:00
|
|
|
"first warning line num
|
2012-02-18 10:38:27 -05:00
|
|
|
let output = substitute(output, '\C%fw', num_warnings ? warnings[0]['lnum'] : '', 'g')
|
2009-07-19 22:59:54 -04:00
|
|
|
|
2011-02-19 02:10:20 -05:00
|
|
|
return output
|
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.
|
2011-12-09 08:44:54 -05:00
|
|
|
"
|
|
|
|
"a:options may also contain:
|
|
|
|
" 'defaults' - a dict containing default values for the returned errors
|
2012-02-08 08:26:55 -05:00
|
|
|
" 'subtype' - all errors will be assigned the given subtype
|
2009-07-15 05:28:44 -04:00
|
|
|
function! SyntasticMake(options)
|
2009-07-29 00:07:04 -04:00
|
|
|
let old_loclist = getloclist(0)
|
2012-04-08 02:19:05 -04:00
|
|
|
let old_makeprg = &l:makeprg
|
2009-07-15 05:28:44 -04:00
|
|
|
let old_shellpipe = &shellpipe
|
2011-02-17 15:53:53 -05:00
|
|
|
let old_shell = &shell
|
2012-04-08 02:19:05 -04:00
|
|
|
let old_errorformat = &l:errorformat
|
2009-07-15 05:28:44 -04:00
|
|
|
|
2012-07-01 17:48:54 -04:00
|
|
|
if s:OSSupportsShellpipeHack()
|
2009-07-15 05:28:44 -04:00
|
|
|
"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='&>'
|
2011-02-17 15:53:53 -05:00
|
|
|
let &shell = '/bin/bash'
|
2009-07-15 05:28:44 -04:00
|
|
|
endif
|
|
|
|
|
|
|
|
if has_key(a:options, 'makeprg')
|
2012-04-08 02:19:05 -04:00
|
|
|
let &l:makeprg = a:options['makeprg']
|
2009-07-15 05:28:44 -04:00
|
|
|
endif
|
|
|
|
|
|
|
|
if has_key(a:options, 'errorformat')
|
2012-04-08 02:19:05 -04:00
|
|
|
let &l:errorformat = a:options['errorformat']
|
2009-07-15 05:28:44 -04:00
|
|
|
endif
|
|
|
|
|
|
|
|
silent lmake!
|
|
|
|
let errors = getloclist(0)
|
|
|
|
|
2009-07-29 00:07:04 -04:00
|
|
|
call setloclist(0, old_loclist)
|
2012-04-08 02:19:05 -04:00
|
|
|
let &l:makeprg = old_makeprg
|
|
|
|
let &l:errorformat = old_errorformat
|
2009-07-15 05:28:44 -04:00
|
|
|
let &shellpipe=old_shellpipe
|
2011-02-17 16:02:31 -05:00
|
|
|
let &shell=old_shell
|
2011-02-17 15:53:53 -05:00
|
|
|
|
2012-10-23 18:02:00 -04:00
|
|
|
if s:IsRedrawRequiredAfterMake()
|
2013-01-16 04:42:22 -05:00
|
|
|
call s:Redraw()
|
2011-09-19 16:10:53 -04:00
|
|
|
endif
|
|
|
|
|
2011-12-09 08:44:54 -05:00
|
|
|
if has_key(a:options, 'defaults')
|
2013-03-03 13:08:54 -05:00
|
|
|
call SyntasticAddToErrors(errors, a:options['defaults'])
|
2011-12-09 08:44:54 -05:00
|
|
|
endif
|
|
|
|
|
2012-02-08 08:25:11 -05:00
|
|
|
" Add subtype info if present.
|
|
|
|
if has_key(a:options, 'subtype')
|
2013-03-03 13:08:54 -05:00
|
|
|
call SyntasticAddToErrors(errors, {'subtype': a:options['subtype']})
|
2012-02-08 08:25:11 -05:00
|
|
|
endif
|
|
|
|
|
2009-07-15 05:28:44 -04:00
|
|
|
return errors
|
|
|
|
endfunction
|
|
|
|
|
2011-12-08 15:34:11 -05:00
|
|
|
"get the error balloon for the current mouse position
|
2011-11-30 14:23:31 -05:00
|
|
|
function! SyntasticErrorBalloonExpr()
|
2011-12-08 15:34:11 -05:00
|
|
|
if !exists('b:syntastic_balloons')
|
|
|
|
return ''
|
|
|
|
endif
|
2011-11-30 14:23:31 -05:00
|
|
|
return get(b:syntastic_balloons, v:beval_lnum, '')
|
|
|
|
endfunction
|
|
|
|
|
2011-12-09 08:44:54 -05:00
|
|
|
"take a list of errors and add default values to them from a:options
|
2013-03-03 13:08:54 -05:00
|
|
|
function! SyntasticAddToErrors(errors, options)
|
2011-12-09 08:44:54 -05:00
|
|
|
for i in range(0, len(a:errors)-1)
|
|
|
|
for key in keys(a:options)
|
2012-01-27 14:43:48 -05:00
|
|
|
if !has_key(a:errors[i], key) || empty(a:errors[i][key])
|
2011-12-09 08:44:54 -05:00
|
|
|
let a:errors[i][key] = a:options[key]
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
endfor
|
|
|
|
return a:errors
|
|
|
|
endfunction
|
|
|
|
|
2009-07-10 19:55:51 -04:00
|
|
|
" vim: set et sts=4 sw=4:
|