diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2020-09-01 16:02:38 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2020-09-01 16:02:38 +0200 |
commit | 45c1923f43f2bb2e626fe910654d4395a0e50a04 (patch) | |
tree | 1312bed0819c740f8fe053558da8ee44b7e969f6 /scripts | |
parent | 8dd0474feb60a4b9f50ee2b8decead0146623966 (diff) | |
download | vim-polyglot-4.7.0.tar.gz vim-polyglot-4.7.0.zip |
Add sql support for javascriptv4.7.0
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/build b/scripts/build index 2e596d52..384c8423 100755 --- a/scripts/build +++ b/scripts/build @@ -391,6 +391,9 @@ def generate_ftdetect(packages, heuristics) " Enable jsx syntax by default call s:SetDefault('g:jsx_ext_required', 0) + " Needed for sql highlighting + call s:SetDefault('g:javascript_sql_dialect', 'sql') + " Make csv loading faster call s:SetDefault('g:csv_start', 1) call s:SetDefault('g:csv_end', 2) |