summaryrefslogtreecommitdiff
path: root/autoload/ale.vim
diff options
context:
space:
mode:
authorJohn Gehrig <jdg.gehrig@gmail.com>2020-03-26 09:25:18 -0400
committerJohn Gehrig <jdg.gehrig@gmail.com>2020-03-26 09:25:18 -0400
commit1c6b9354a825a0dbab310077dd05666b8e081974 (patch)
tree1b85becafa606a626d16a08116976df013457af2 /autoload/ale.vim
parentbbe5153fcb36dec9860ced33ae8ff0b5d76ac02a (diff)
downloadale-1c6b9354a825a0dbab310077dd05666b8e081974.zip
Issue 2598: Addtional ^M characters on Windows
Windows may insert carriage return line endings, which ALE does not handle well. These characters should not be displayed. Adds a line to remove these characters for all messages.
Diffstat (limited to 'autoload/ale.vim')
-rw-r--r--autoload/ale.vim2
1 files changed, 2 insertions, 0 deletions
diff --git a/autoload/ale.vim b/autoload/ale.vim
index ee1a0d54..6d0afb9e 100644
--- a/autoload/ale.vim
+++ b/autoload/ale.vim
@@ -263,6 +263,8 @@ function! ale#GetLocItemMessage(item, format_string) abort
let l:msg = substitute(l:msg, '\v\%([^\%]*)code([^\%]*)\%', l:code_repl, 'g')
" Replace %s with the text.
let l:msg = substitute(l:msg, '\V%s', '\=a:item.text', 'g')
+ " Windows may insert carriage return line endings (^M), strip these characters.
+ let l:msg = substitute(l:msg, '\r', '', 'g')
return l:msg
endfunction