diff options
author | w0rp <devw0rp@gmail.com> | 2017-02-26 14:51:22 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-02-26 14:51:22 +0000 |
commit | b2fe1b2567a1a1e6a5e2ff805a46fa7f546ce62c (patch) | |
tree | 009f7b779ad1e800fd4b9c278954e2c81779d6de /ale_linters/haskell | |
parent | f1e80b800cc8c8488c9561b0db07304157ae489b (diff) | |
download | ale-b2fe1b2567a1a1e6a5e2ff805a46fa7f546ce62c.zip |
Copy all loclist items returned from handlers, and set up defaults for convenience
Diffstat (limited to 'ale_linters/haskell')
-rw-r--r-- | ale_linters/haskell/hlint.vim | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ale_linters/haskell/hlint.vim b/ale_linters/haskell/hlint.vim index 5b870e3d..6a907ab9 100644 --- a/ale_linters/haskell/hlint.vim +++ b/ale_linters/haskell/hlint.vim @@ -11,7 +11,6 @@ function! ale_linters#haskell#hlint#Handle(buffer, lines) abort call add(l:output, { \ 'bufnr': a:buffer, \ 'lnum': l:error.startLine + 0, - \ 'vcol': 0, \ 'col': l:error.startColumn + 0, \ 'text': l:error.severity . ': ' . l:error.hint . '. Found: ' . l:error.from . ' Why not: ' . l:error.to, \ 'type': l:error.severity ==# 'Error' ? 'E' : 'W', |