From ef5b900657a2e0ec127ec0129396c20f947cbf77 Mon Sep 17 00:00:00 2001 From: Steven Lu Date: Fri, 31 Mar 2017 11:22:25 -0700 Subject: adds line highlights style (#436) * adds line highlights style * adding doc for the new highlight styles. * missing space --- autoload/ale/sign.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'autoload') diff --git a/autoload/ale/sign.vim b/autoload/ale/sign.vim index 0c4488b5..e002f584 100644 --- a/autoload/ale/sign.vim +++ b/autoload/ale/sign.vim @@ -14,9 +14,9 @@ endif " Signs show up on the left for error markers. execute 'sign define ALEErrorSign text=' . g:ale_sign_error -\ . ' texthl=ALEErrorSign' +\ . ' texthl=ALEErrorSign linehl=ALEErrorLine' execute 'sign define ALEWarningSign text=' . g:ale_sign_warning -\ . ' texthl=ALEWarningSign' +\ . ' texthl=ALEWarningSign linehl=ALEWarningLine' sign define ALEDummySign " Read sign data for a buffer to a list of lines. -- cgit v1.2.3