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
1 answer

Error occured when saving JavaScript file in Vim

When I save JavaScript file in Vim, I always get this error. Error detected while processing function 107_BufWritePostHook[3]..107_UpdateErrors[15]..107_CacheErrors[20]..352[17]..359: line 1: E730: using List as a String …
0
votes
0 answers

Why can't I see any indicators from Syntastic?

I'm trying to use vim for my project. In order to do that I would like to get real-time feedback from eslint (like I get in sublime with SublimeLinter-eslint) and am therefore trying to get Syntastic working. Everything seems to be set up properly…
George Mauer
  • 117,483
  • 131
  • 382
  • 612
0
votes
1 answer

VIM coding error underline with syntastic

I am kind of new to VIM, i am still learning it. I would like to achive something like in most IDEs, to make VIM underline my mistakes with some color (red for example). I found syntastic, because everyone recommends it. I installed it, it works…
Gábor Erdős
  • 3,599
  • 4
  • 24
  • 56
0
votes
1 answer

Syntastic error symbols are offsetting my code

somecode(); somecode(); somecode(); But if syntastic finds and error it will display the error sign at that line like this somecode(); >> somecode() somecode(); The problem is that everything will get a bit indented because there…
Maik Klein
  • 15,548
  • 27
  • 101
  • 197
0
votes
0 answers

How to delete the bottom white line in vim?

Once I installed syntastic, this white line shows up, but now i dont want that anymore, and it stays even if i have deleted the plugin. How can i eliminate that? white bar click here
0
votes
1 answer

Using syntastic plugin with vim in Windows 8.0 Powershell

I've recently been using the Windows 8.0 Powershell package manager program called "scoop" (see https://github.com/lukesampson/scoop for more details), which is based off of Mac's HomeBrew. I have installed Vim (7.4) with this tool. I am trying to…
bama_programmer
  • 185
  • 1
  • 1
  • 11
0
votes
0 answers

Syntastic doesn't work in combination with vim signify

Here is a snippet of my .vimrc nnoremap p "0p xnoremap p "0p nnoremap d "_d xnoremap d "_d call plug#begin('~/.vim/plugged') Plug 'Raimondi/delimitMate' Plug 'pangloss/vim-javascript' Plug…
sasidhar
  • 7,523
  • 15
  • 49
  • 75
0
votes
0 answers

Java file type passive in Syntastic for GVim

I'm currently trying to configure Syntastic for Java programming. I set my global mode to be 'active'. However, upon saving the checker is not running. I ran the SyntasticInfo command and was told that java filetype is passive I read the…
0
votes
0 answers

Syntastic check with remote for vim + vagrant

I'm using vim locally to edit files on my Mac host. These files are then synced using nfs to a vm (setup with Vagrant) that includes all of the dependencies. The vm is currently where the tests are run and where I would like to setup linting to run.…
cjav_dev
  • 2,895
  • 19
  • 25
0
votes
0 answers

gvim syntastic Error: Module XXX cannot read file 'file\etc\etc'

I have a set of libraries that live in another folder and syntastic is trying to look for this libraries in the same folder where program lives. For example, the program I have, let's call it, myprogr.d is in c:\programming\myprogr.d. There are…
jicman
  • 46
  • 4
0
votes
2 answers

Synastic errors - Vim, Stack, Haskell development

I am using stack for my Haskell development and Syntastic for my error checking when editing in Vim. I have not installed the haskell-platform, instead, I use a stack build --install-ghc to get my environment up and running using the supported GHC,…
user2913694
0
votes
0 answers

Syntastic not detecting errors

I am new to VIM. I have successfully installed pathogen and with the pathogen i install NERDTree, snimate, vim airline, vim snippets etc all are working fine. But when i tried syntastic its not detecting any errors i follow the directions for their…
Rana Zubair
  • 189
  • 1
  • 3
  • 15
0
votes
1 answer

How to configure paths to import from for flake8 in syntastic

I configured flake8 as the python checker in syntastic plugin. Problem is my project has some extra paths added to sys.path at runtime. I need somewhere to configure those paths, otherwise the checker will keep complaining [F0401] Unable to import…
Joey.Z
  • 4,492
  • 4
  • 38
  • 63
0
votes
1 answer

Perl Syntaxcheck: Add path

Some perl modules i'm using are not in any directory in my $PATH, but in another. Normaler, I have to do use lib '/path/to/modules'; use ModuleOne; in order to use it. Or, if I do it on the terminal perl -I/path/to/modules .... But since we're…
0
votes
1 answer

how to fix syntastic javascript warnings: 'X is not defined'?

I am using vim with syntastic on a javascript (cordova) project, but I am getting a lot of warnings as can be seen below: I consider to be a javascript noob, so I'm a little concerned that my code is not to a good standard. How can I fix these…
Chris Snow
  • 23,813
  • 35
  • 144
  • 309