validator.vim
validator.vim copied to clipboard
Check syntax on the fly asynchronously.
The command line should be `clang-tidy -- filename`, not `clang-tidy filename -- `.
Am I getting right that `let g:validator_permament_sign = 1` should always reserve place for the error sign at the left? In my case, it appears when there is any issue...
Currently having issues with the plugin because it's trying to use the global eslint instead of the local project one: ``` 2018-12-13 12:31:54,073 [INFO] parse input = [, ["Error: Cannot...
My linter (eslint) is configured to warn if the final EOL is missing. We could actually read vim flags (endofline, fixendofline), but usually linters only run on code (non-binary) files...
Hey, I'm running into this issue that the location of `validator.log` is more or less [hardcoded](https://github.com/maralla/validator.vim/blob/739d3bd39f876df9c6097f17548c71d84a999fc3/pythonx/validator/utils.py#L35) It would be kind of nice if that path could be defined by a...
Hi, How do I set custom compile-commands.json for clang-tidy? I need this to use validator properly with a meson build. I tried to put "-p ./build" into .clang-tidy-config to set...
gvimvim 8.1 1-26/windows10 flake8 installed via: `pip install flake8` vimrc: ```let g:validator_py_checkers = ['flake8'] let g:validator_highlight_message = 1 let g:validator_auto_open_quickfix = 1 let g:validator_error_msg_format = "[ ● %d/%d issues ]"...
Hi @maralla : Do you have plan to support coffeescript? Thanks.
The quickfix window that I get with `let g:validator_auto_open_quickfix = 1` when opening a file does not close when I close that file, resulting in me having to close that,...
`clang-tidy` seems to be enabled by default. I tried turning it off by putting the following in my `.vimrc`: ```vim let g:syntastic_c_checkers=[] let g:syntastic_cpp_checkers=[] ``` Even after restarting vim, the...