summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorTim Bedard <tpbedard@gmail.com>2020-08-29 05:17:29 -0500
committerGitHub <noreply@github.com>2020-08-29 12:17:29 +0200
commitd4fcef1aa835f20f4f9df41eceb406b66f446f70 (patch)
treefefde3b55f606155305e6c607b062a7c60c6e8a3 /scripts
parent7972e8eea10ce6420443713b74224fc185d22db9 (diff)
downloadvim-polyglot-d4fcef1aa835f20f4f9df41eceb406b66f446f70.tar.gz
vim-polyglot-d4fcef1aa835f20f4f9df41eceb406b66f446f70.zip
add missing period to fix mako detection (#530)
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/build2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build b/scripts/build
index 29c57a49..f26fb511 100755
--- a/scripts/build
+++ b/scripts/build
@@ -297,7 +297,7 @@ def generate_ftdetect
outer_filetype = filetype["outer_filetype"]
if outer_filetype
output << " au BufNewFile *.*.#{extension} execute \"do BufNewFile filetypedetect \" . expand(\"<afile>:r\") | #{outer_filetype}\n"
- output << " au BufReadPre *.*#{extension} execute \"do BufRead filetypedetect \" . expand(\"<afile>:r\") | #{outer_filetype}\n"
+ output << " au BufReadPre *.*.#{extension} execute \"do BufRead filetypedetect \" . expand(\"<afile>:r\") | #{outer_filetype}\n"
end
if ambiguous_extensions.include?(extension)