Martin Grenfell
42480a01a1
modify SyntasticLoadChecker to load any checkers present
...
Previously we were only loading "official" checkers that had been added
to syntastic. Now we load any checker that is in the right directory.
This allows anyone to add custom checkers to any filetype that uses
`SyntasticLoadChecker()`
2012-12-03 21:22:44 +00:00
Martin Grenfell
6d5a604251
Merge pull request #409 from jhickner/master
...
Add -fno-code to the call to ghc-mod, which speeds up haskell syntax checking
2012-12-03 03:02:39 -08:00
Martin Grenfell
7fe3ac44c2
allow custom checkers by just defining a checking function
...
Problem: users want to define their own checking function and not use
the syntastic defaults
Solution: dont load the syntastic default if a checking function
already exists. This way users can just define their own function and
override syntastic.
e.g. the user wants to have their own ruby checker, so in their vimrc
they just add:
function! SyntaxCheckers_ruby_GetLocList()
return SyntasticMake({"some custom stuff"})
endfunction
2012-12-03 10:59:11 +00:00
Martin Grenfell
11907f6907
Merge pull request #413 from jgrande/master
...
docbook checker: added quotes to args in expand() call
2012-12-03 01:59:09 -08:00
Martin Grenfell
d4e74d81d8
typescript: dont need to escape the space inside a string
2012-12-03 09:57:06 +00:00
Martin Grenfell
1b237eba14
Merge pull request #416 from jb55/typescript
...
Fix TypeScript errorformat for latest version of the compiler
2012-12-03 01:56:27 -08:00
Martin Grenfell
ac0c732f6a
Merge pull request #410 from dbarnett/loaded_flag
...
Set g:loaded_FOO_syntax_checker in syntastic.vim, not every ft file.
2012-12-03 01:52:23 -08:00
Martin Grenfell
9f7df943d5
Merge pull request #417 from artnez/python-interpreter-checker
...
Add python checker that uses python itself
2012-12-03 01:49:33 -08:00
Bill Casarin
562a37adce
Support zero or more spaces at the end of a filename in the typescript errorformat
2012-12-01 21:07:51 -05:00
Artem Nezvigin
4126760bca
Add python checker that uses python itself
...
The advantage to this is that no 3rd party modules are required. People
new to Python probably won't have flake8/pyflakes/pylint installed. This
will get them basic syntax checking (no linting) out of the box.
2012-12-01 12:17:46 -08:00
Bill Casarin
7ceba36412
Fix typescript errorformat for latest version of the compiler
2012-11-30 10:13:12 -05:00
Juan Grande
45f5437088
docbook checker: added quotes to args in expand() call
2012-11-29 09:07:25 -03:00
David Barnett
b209693a2a
Only set g:loaded_FT_syntax_checker if unset
2012-11-27 07:43:42 -08:00
David Barnett
dcac33ecc0
Set g:loaded_FOO_syntax_checker in syntastic.vim, not every ft file.
2012-11-26 21:44:43 -08:00
Jason Hickner
9f9204415b
fix typo
2012-11-23 16:20:04 -08:00
Jason Hickner
02ab1c9df0
add the -fno-code ghc option to speed up checking
...
Since we're only using ghc to check and lint the file and not actually create output, we can pass -fno-code which omits code generation and speeds up the check quite a bit.
2012-11-23 16:14:53 -08:00
Martin Grenfell
122e88b82a
Merge pull request #365 from coryf/erb-ruby-exec-setting
...
Add support for changing the ruby version for erb
2012-11-21 02:07:20 -08:00
Martin Grenfell
ccecbcb460
javascript/jsl: update conf flag option
...
Make it so you only have to set g:syntastic_javascript_jsl_conf to
"/path/to/conf" rather than "-conf /path/to/conf"
Closes #405
2012-11-19 22:20:29 +00:00
Martin Grenfell
deaa089884
sass checker: use sass's caching to speed up checking
2012-11-19 09:59:14 +00:00
Martin Grenfell
36db8f4b16
fix a bug with highlighting and getmatches
...
Highlighting requires vim >= 7.1 with patch 40. It should be disabled
otherwise.
Fix a bug with the version check.
Closes #250 .
2012-11-17 20:15:45 +00:00
Martin Grenfell
aba5dd4757
Merge pull request #393 from ChristophMartin/syntax_checkers/go
...
Fixes Golang Syntax Checker
2012-11-17 11:56:50 -08:00
Martin Grenfell
01340e4de3
Merge pull request #387 from marcparadise/erlang-otp-support
...
Add typical deps locations for includes
2012-11-17 09:18:46 -08:00
Martin Grenfell
0a7b21d602
Merge pull request #394 from jjimenezlopez/master
...
The warnings were shown as errors when using flake8
2012-11-14 11:50:55 -08:00
Martin Grenfell
c6c1f426a7
remove gender specific language from readme
...
Closes #402
2012-11-14 19:36:24 +00:00
Martin Grenfell
d448f180e4
php checker: a bunch of refactors
...
* only check `executable()` for the sub checkers once - at the top of
the script
* recapitalize `s:getPHPMDErrors` to `s:GetPHPMDErrors` errors for
style consistency
* simplify the logic in `SyntaxCheckers_php_GetLocList`
2012-11-13 08:41:09 +00:00
Martin Grenfell
83611198b4
Merge pull request #395 from harijari/add-phpmd-support
...
Added support for phpmd qa tool at php filetype.
2012-11-13 00:32:15 -08:00
Gregor Uhlenheuer
8a2adf92d3
Merge pull request #399 from dkasak/patch-1
...
Fix typo in doc/syntastic.txt
2012-11-05 10:53:27 -08:00
Denis
226b8a3d84
Fix typo in doc/syntastic.txt
2012-11-04 12:14:03 +01:00
kongo2002
fd173f1c91
move haskell syntax checkers into separate subdir
2012-10-29 22:22:28 +01:00
kongo2002
6942425b44
Merge remote-tracking branch 'bitc/haskell-hdevtools'
2012-10-29 21:09:54 +01:00
Jarek Sobiecki
6040ab8d54
Added support for phpmd qa tool at php filetype.
2012-10-27 22:20:25 +02:00
Jose Jiménez
9504f526d4
The warnings were shown as errors when using flake8
2012-10-26 13:27:03 +02:00
Christoph Martin
7ffeb29915
drop 6g syntax checker
...
6g has been superseded by the go tool.
2012-10-26 12:38:14 +02:00
Christoph Martin
d3d00e4b70
use gofmt
before go [build|test]
...
`go build` might not catch syntax errors of the current file if another
file with syntax errors is compiled before the current one.
2012-10-26 12:28:04 +02:00
ghthor
96e0ce95b8
bugfix: use go test
for test files.
...
Test files are not compiled when invoking `go build`.
2012-10-26 12:23:00 +02:00
ghthor
90a4a0571d
bugfix: run go compiler from package directory
...
The compiler only works correctly if passed an import path or run from
the package directory, the latter of which is the path of least
resistance.
2012-10-26 12:16:08 +02:00
Christoph Martin
7010459585
change gofmt invocation
...
If no syntax errors are found, `gofmt -l % 1>/dev/null` prints the file
name to STDOUT, which is redirected to /dev/null. Less to parse for
syntastic!
If errors are found, they are written to STDERR.
This invocation does not alter the source code, which has been indicated
in the comments.
2012-10-26 12:00:02 +02:00
Martin Grenfell
714b2b19cd
Merge pull request #392 from clehner/master
...
Prevent tabs in error messages from causing "press enter" prompt
2012-10-26 01:16:51 -07:00
Charles Lehner
3199ca3235
Explain why tabs are converted to spaces in error messages.
2012-10-25 20:01:31 -04:00
Charles Lehner
57e962865f
Prevent tabs in error messages from causing "press enter" prompt.
...
Convert the tabs to spaces so that they are counted towards the window width
and the status message does not wrap.
2012-10-25 17:20:07 -04:00
Martin Grenfell
33427121ec
fix a bug introduced in 60a3588d30
...
Two different calculations were incorrectly combined in
s:OSSupportsShellpipeHack().
Introduce s:IsRedrawRequiredAfterMake() to hold the other calculation.
Closes #388
2012-10-23 23:05:00 +01:00
Martin Grenfell
0765f97dd3
refactor out some duplication of /dev/null logic
2012-10-23 22:37:11 +01:00
Martin Grenfell
3e58e495ac
Merge pull request #389 from mmv/master
...
Support less/rst/typescript syntax checkers on Windows platforms
2012-10-23 14:28:52 -07:00
Miguel Ventura
a005ebfdf8
Adding support for less/rst/typescript syntax checkers on Windows.
2012-10-22 23:41:30 +01:00
marc@opscode.com
02b22f862b
additional typical deps location for includes
2012-10-17 13:09:26 -07:00
marc@opscode.com
37d3a8318f
include deps for otp-structured apps
2012-10-17 13:05:46 -07:00
Martin Grenfell
aa07bd7122
ruby: make the mri checker play nicer with RVM
...
Query RVM for the version of ruby that should be used to do the syntax
check.
This wont work if the user has different versions of ruby for different
directories (e.g. if they are using a project rvmrc) as it will only a
single ruby version per vim instance.
I think this should satisfy almost everyone though, so we can wait for
feedback before doing anything more hardcore.
2012-10-15 12:49:22 +01:00
Martin Grenfell
429913defc
Merge pull request #386 from kasyaar/erlang-checker-improvements2
...
fix erlang syntax checker
2012-10-15 03:44:16 -07:00
Dmitry Kasimtsev
cc45c6f41b
fix erlang syntax checker
2012-10-14 20:08:15 +03:00
Martin Grenfell
ba17657bc4
Merge pull request #380 from kasyaar/erlang-checker-improvements
...
add possibility to add specific compile instruction
2012-10-12 05:06:32 -07:00