Use vim-polyglot only as fallback to other plugins, fixes #580

This commit is contained in:
Adam Stankiewicz
2020-10-24 18:52:18 +02:00
parent 3c148e9ef5
commit 8e61708b45
1227 changed files with 6139 additions and 0 deletions

View File

@@ -293,6 +293,15 @@ def copy_file(name, src, dest)
open(src, "r") do |input|
open(dest, "w") do |output|
if dest.match?(/\.vim$/) && !dest.match('after/')
output << <<~EOF
let files = filter(globpath(&rtp, '#{dest}', 1, 1), { _, v -> v !~ "vim-polyglot" && v !~ $VIMRUNTIME && v !~ "after" })
if len(files) > 0
exec 'source ' . files[0]
finish
endif
EOF
end
if name == "jsx"
output << "if !exists('g:polyglot_disabled') || (index(g:polyglot_disabled, 'javascript') == -1 && index(g:polyglot_disabled, 'jsx') == -1)\n\n"
else