mirror of
https://github.com/prabirshrestha/vim-lsp.git
synced 2026-06-09 15:37:30 +02:00
Handle lower-case drive-letter (#208)
This commit is contained in:
@@ -45,7 +45,7 @@ if has('win32') || has('win64')
|
||||
else
|
||||
" You must not encode the volume information on the path if
|
||||
" present
|
||||
let l:end_pos_volume = matchstrpos(a:path, '\C[A-Z]:')[2]
|
||||
let l:end_pos_volume = matchstrpos(a:path, '\c[A-Z]:')[2]
|
||||
|
||||
if l:end_pos_volume == -1
|
||||
let l:end_pos_volume = 0
|
||||
|
||||
Reference in New Issue
Block a user