Skip setting of signs at line 0 and so on, to avoid any issues there.

This commit is contained in:
w0rp 2016-10-06 13:01:33 +01:00
parent 36acde533f
commit 596a374c6e

View File

@ -1,3 +1,4 @@
scriptencoding utf-8
" Author: w0rp <devw0rp@gmail.com>
" Description: Draws error and warning signs into signcolumn
@ -71,6 +72,11 @@ function! ale#sign#CombineSigns(loclist)
for obj in a:loclist
let should_append = 1
if obj.lnum < 1
" Skip warnings and errors at line 0, etc.
continue
endif
if len(signlist) > 0 && signlist[-1].lnum == obj.lnum
" We can't add the same line twice, because signs must be
" unique per line.