syntastic
syntastic copied to clipboard
Syntax checking hacks for vim
The Elixir syntax checker executes any program it checks. For example: ``` elixir # sleeper.exs sleeper = fn -> :timer.sleep(4_000) end sleeper.() ``` It takes 4 seconds to save this...
Hi, I'm the Debian maintainer of vim-syntastic and I received this bug report: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=894736 Package: vim-syntastic Version: 3.8.0-1 Severity: serious Hello, syntastic has a Configuration Files[1] feature enabled for several...
Problem: The syntastic doesn't highlight errors in haskell files using hlint.exe Solution: Inside the Cygwin env the hlint.exe can't load the .hs name expanded by syntastic inside vim because it...
When the syntastic plugin is updating a quickifx list asynchronously, some other Vim plugin or user can create/modify the quickfix list resulting in the syntastic plugin updating the incorrect quickfix...
When I use ```viml let g:syntastic_auto_loc_list = 1 ``` If I'm on a `.cpp` file that has error(s), after going to the error position which on another `.h` header file,...
The `lint` package has been [removed from CRAN][lint]. The corresponding syntastic checker `r/lint` will be removed in a future release. Please consider using checker `r/lintr` instead. [lint]: https://github.com/halpo/lint/issues/23
`moonc` is the official MoonScript compiler and comes with a builtin linter. Any chance of supporting it?
Consider changing xslt checker to use xsltproc instead of xmllint. Example output: ``` compilation error: file file.xsl line 21 element alue-of xsltStylePreCompute: unknown xsl:alue-of ``` It also returns xmllint style...
It seems that gfortran (5.3.0) can ocassionally throw multiline warnings, such as: ``` read_control.f90:8488.5: 89 continue 1 read_control.f90:8472.71: read(inputline,*,end=89,err=99) desc_str, n_core_states_soc 2 Warning: Legacy Extension: Label at (1) is not...
The haskell compiler usually provides nice multi-line error messages, such as ``` $ hdevtools check "$PWD/Writer.hs" /home/jojo/uni/info/Vorträge/2016-02-19 BobKonf/Writer.hs:87:5: No instance for (MonadFix Write) arising from a do statement In a...