From 67ea571659f31f2ac2253789fabb6b1a30661508 Mon Sep 17 00:00:00 2001 From: w0rp Date: Wed, 13 Mar 2019 15:54:09 +0000 Subject: Handle pipes in Windows drive letters for URIs --- autoload/ale/path.vim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'autoload') diff --git a/autoload/ale/path.vim b/autoload/ale/path.vim index ca3afc52..25193ddb 100644 --- a/autoload/ale/path.vim +++ b/autoload/ale/path.vim @@ -206,8 +206,9 @@ function! ale#path#FromURI(uri) abort endif " If the path is like /C:/foo/bar, it should be C:\foo\bar instead. - if l:encoded_path =~# '^/[a-zA-Z]:' + if l:encoded_path =~# '^/[a-zA-Z][:|]' let l:encoded_path = substitute(l:encoded_path[1:], '/', '\\', 'g') + let l:encoded_path = l:encoded_path[0] . ':' . l:encoded_path[2:] endif return ale#uri#Decode(l:encoded_path) -- cgit v1.2.3