summaryrefslogtreecommitdiffstats
path: root/scripts/build
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/build')
-rwxr-xr-xscripts/build9
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/build b/scripts/build
index efae3219..7d678e43 100755
--- a/scripts/build
+++ b/scripts/build
@@ -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