mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-06 12:44:23 +08:00
Fix #2452 - Strip trailing spaces off sign text automatically
This commit is contained in:
@@ -66,7 +66,7 @@ endif
|
|||||||
|
|
||||||
" Spaces and backslashes need to be escaped for signs.
|
" Spaces and backslashes need to be escaped for signs.
|
||||||
function! s:EscapeSignText(sign_text) abort
|
function! s:EscapeSignText(sign_text) abort
|
||||||
return substitute(a:sign_text, '\\\| ', '\\\0', 'g')
|
return substitute(substitute(a:sign_text, ' *$', '', ''), '\\\| ', '\\\0', 'g')
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
" Signs show up on the left for error markers.
|
" Signs show up on the left for error markers.
|
||||||
|
|||||||
Reference in New Issue
Block a user