Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed runtimepath resolving #752

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions autoload/polyglot/init.vim
Original file line number Diff line number Diff line change
Expand Up @@ -3567,23 +3567,23 @@ if exists("did_load_filetypes") && exists("g:polyglot_disabled")
runtime! extras/filetype.vim
endif

let s:runtime = resolve($VIMRUNTIME)
let s:base = resolve(expand('<sfile>:p:h:h:h'))
func! s:resolve(file) abort
return substitute(resolve(a:file), '\\', '/', 'g')
endfunc

let s:runtime = s:resolve($VIMRUNTIME)
let s:base = s:resolve(expand('<sfile>:p:h:h:h'))

func! s:process_rtp(rtp)
" Remove vim-polyglot from paths and make everything absolute
let rtp = []
for path in a:rtp[1:-2]
let abspath = resolve(path)
if stridx(abspath, s:base) != 0
call add(rtp, abspath)
endif
endfor
let rtp = filter(map(copy(a:rtp[1:-2]), '[s:resolve(v:val), v:val]'),
\ 'stridx(v:val[0], s:base) != 0')
" User's directory is always first
let result = [a:rtp[0]]
" Then all other stuff (until vimruntime)
let i = 0
for path in rtp[0:len(rtp)-1]
if path == s:runtime
for [abspath, path] in rtp[0:len(rtp)-1]
if abspath == s:runtime
break
endif
call add(result, path)
Expand All @@ -3593,8 +3593,8 @@ func! s:process_rtp(rtp)
call add(result, s:base)
" Then all other files, until after-files
while i < len(rtp)
let path = rtp[i]
if match(path, '[/\\]after$') > -1
let [abspath, path] = rtp[i]
if match(abspath, '/after$') > -1
break
endif
call add(result, path)
Expand All @@ -3604,7 +3604,7 @@ func! s:process_rtp(rtp)
call add(result, s:base . '/after')
" Then all other after paths
while i < len(rtp)
let path = rtp[i]
let [_, path] = rtp[i]
call add(result, path)
let i = i + 1
endwhile
Expand Down