Questions tagged [syntastic]

Syntastic is a syntax checking plugin for the Vim editor that runs files through external syntax checkers and displays any resulting errors to the user.

The Syntastic manual can be found here:

https://github.com/vim-syntastic/syntastic/blob/master/README.markdown

232 questions
0
votes
2 answers

Unwanted highlighting with Syntastic / Jedi-Vim

I'm using Syntastic and Jedi-Vim. At the moment I'm using Syntastics features to highlight pylint errors in vim. I feel like I've come across some sort of bug as you can see in the screenshot my custom Error line highlight will show a undercurl when…
brendan
  • 31
  • 3
0
votes
1 answer

vim syntastic:
proprietary attribute "novalidate"

I have following vim plugins installed: Plugin 'othree/html5.vim' Plugin 'scrooloose/syntastic' however, having following html chunk: shows:
propritary attribute "novalidate" To prevent error I have to explicitly…
Peter Butkovic
  • 11,143
  • 10
  • 57
  • 81
0
votes
1 answer

How to config where Syntastic is going to generate the .class files?

I am writing some code to my phd project and I am using VIM as my code editor. As I am coding in Java, I chose Syntastic to check and compile my code. So far so good. My issue comes when I try to create a directory with all my .classes. I want to do…
Daniel Alencar
  • 173
  • 2
  • 5
0
votes
1 answer

Syntastic going passive mode

It's been quite some time that I'm facing this annoying problem with syntastic. When running gvim and performing a SyntasticInfo c, without opening anything, it returns me : Syntastic version: 3.5.0-72 Info for filetype: c Mode: active Filetype c is…
user2546845
0
votes
1 answer

VIM with Syntastic: Why is VIM's JAVA syntax highlighting thrown off by `<` and `>` in a comment block?

In VIM, when editing .java files, I'm seeing the syntax highlighter being thrown off by the < and > characters inside of comment blocks. It seems to expect me to close the . Here's an example: /** * `<` <-- this character…
FreePender
  • 4,770
  • 2
  • 18
  • 15
0
votes
1 answer

Vim syntastic is not showing warning messages

This is my current syntastic configuration: let g:syntastic_check_on_open=1 let g:syntastic_quiet_messages = { "level": [] } let g:syntastic_aggregate_errors = 1 let g:syntastic_javascript_checkers = ['jshint', 'jslint'] let…
Ch4rAss
  • 754
  • 3
  • 18
0
votes
1 answer

Using Vim with syntastic and SCP

I edit some remote files using vim in combination with scp. When editing a remote php file using this method syntastic plugin isn't working. When I type, :SyntasticInfo it says info for file type is php. So it recognizes the file type but isn't…
jon
  • 3
  • 2
0
votes
1 answer

Cannot get html validation to work within Syntastic (gvim)

I am trying to get jshint to work within Syntastic (gvim). The Syntastic wiki says it can be used for html validation. I added following line to my vimrc. let g:syntastic_html_checkers = ['jshint'] Available and currently enable checker: jshint is…
Christoph
  • 1,347
  • 2
  • 19
  • 36
0
votes
1 answer

node-jslint with Syntastic in vim on Cygwin only display partial errors

On win7, I have installed Cygwin, and installed node-jslint by npm install -g jslint And node-jslint will be my Javascript syntax checker in Syntastic by configuring in .vimrc: let g:syntastic_js_checkers=['jslint'] I have a file test.js with only…
longtengaa
  • 300
  • 3
  • 11
0
votes
1 answer

Gvim - YCM - show errors in balloons

I was wondering if there is a way to show code errors in balloons like Syntastic when mouse hover on it.
Baron Leonardo
  • 329
  • 3
  • 13
0
votes
1 answer

syntastic goes renegade: how to disable checking files in /usr/include/*.h

Err. I can't say much, see this image: On the left pane you my vimrc, on the right pane: c code. On the bottom, undesirable synstastic warnings, errors, etc. My question: How do you make syntastic check only my source code and not everything…
oz123
  • 27,559
  • 27
  • 125
  • 187
0
votes
0 answers

Syntastic not checking python code

I have both syntastic and python-mode installed.. However, I want to syntax check using syntastic.. To do this, I have disabled pymode check with, let g:pymode_lint = 0 Also, when python file if opened, syntastic says that checker is present, but…
vibhor
  • 31
  • 6
0
votes
1 answer

Vim Syntastic plugin not working for coffeescript 1.6.0+

I have the following syntastic settings inside my .vimrc: "------------SYNTASTIC----------- let g:syntastic_enable_signs=1 let g:syntastic_mode_map={ 'mode': 'active', \ 'active_filetypes': [], \…
Dannalieth
  • 257
  • 1
  • 4
  • 13
0
votes
2 answers

How to check syntastic's status?

I updated node with homebrew today and that meant that all the npm modules got blown away. This of course means that the jshint executable (e.g. obtained by npm install -g jshint) is no longer present so Syntastic just silently stopped checking…
Steven Lu
  • 41,389
  • 58
  • 210
  • 364
0
votes
1 answer

quickfix window under vim with syntastic

I have the following vimrc for go. If I press :w I will get and than I do :make $ vim closure.go make: *** No targets specified and no makefile found. Stop. Press ENTER or type command to continue [No write since last change] #…
user977828
  • 7,259
  • 16
  • 66
  • 117
1 2 3
15
16