From fb682be1997f812171def14976b5dfbef38c9f0d Mon Sep 17 00:00:00 2001 From: David Alexander Date: Thu, 15 Jun 2017 04:30:34 -0400 Subject: Fix for Crystal support (#651) * Strip color from Crystal compiler output * Don't lint files if the file doesn't exist * Lint files if they are readable --- ale_linters/crystal/crystal.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ale_linters/crystal') diff --git a/ale_linters/crystal/crystal.vim b/ale_linters/crystal/crystal.vim index 8f38a61b..fd076e02 100644 --- a/ale_linters/crystal/crystal.vim +++ b/ale_linters/crystal/crystal.vim @@ -1,4 +1,4 @@ -" Author: Jordan Andree +" Author: Jordan Andree , David Alexander " Description: This file adds support for checking Crystal with crystal build function! ale_linters#crystal#crystal#Handle(buffer, lines) abort @@ -24,7 +24,7 @@ function! ale_linters#crystal#crystal#Handle(buffer, lines) abort endfunction function! ale_linters#crystal#crystal#GetCommand(buffer) abort - let l:crystal_cmd = 'crystal build -f json --no-codegen -o ' + let l:crystal_cmd = 'crystal build -f json --no-codegen --no-color -o ' let l:crystal_cmd .= ale#Escape(g:ale#util#nul_file) let l:crystal_cmd .= ' %s' -- cgit v1.2.3