Mercurial > vim
annotate runtime/scripts.vim @ 30849:fe54ba93f830 v9.0.0759
patch 9.0.0759: huge build on macos does not use Perl
Commit: https://github.com/vim/vim/commit/fa7bb1d937308a60280e070b01baba5342148ff7
Author: Philip H <47042125+pheiduck@users.noreply.github.com>
Date: Sat Oct 15 14:17:37 2022 +0100
patch 9.0.0759: huge build on macos does not use Perl
Problem: Huge build on macos does not use Perl.
Solution: Re-enable the Perl interface using "dynamic". (closes https://github.com/vim/vim/issues/11375)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 15 Oct 2022 15:30:03 +0200 |
parents | 7346315e8517 |
children | 635de73eeb4c |
rev | line source |
---|---|
7 | 1 " Vim support file to detect file types in scripts |
2 " | |
3 " Maintainer: Bram Moolenaar <Bram@vim.org> | |
27692
7346315e8517
patch 8.2.4372: filetype detection from file contents is in legacy script
Bram Moolenaar <Bram@vim.org>
parents:
27132
diff
changeset
|
4 " Last change: 2022 Feb 13 |
7 | 5 |
6 " This file is called by an autocommand for every file that has just been | |
7 " loaded into a buffer. It checks if the type of file can be recognized by | |
8 " the file contents. The autocommand is in $VIMRUNTIME/filetype.vim. | |
11504
a58229e3aff6
patch 8.0.0635: when 'ignorecase' is set script detection is inaccurate
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
9 " |
a58229e3aff6
patch 8.0.0635: when 'ignorecase' is set script detection is inaccurate
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
10 " Note that the pattern matches are done with =~# to avoid the value of the |
a58229e3aff6
patch 8.0.0635: when 'ignorecase' is set script detection is inaccurate
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
11 " 'ignorecase' option making a difference. Where case is to be ignored use |
a58229e3aff6
patch 8.0.0635: when 'ignorecase' is set script detection is inaccurate
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
12 " =~? instead. Do not use =~ anywhere. |
7 | 13 |
14 | |
27692
7346315e8517
patch 8.2.4372: filetype detection from file contents is in legacy script
Bram Moolenaar <Bram@vim.org>
parents:
27132
diff
changeset
|
15 " Bail out when a FileType autocommand has already set the filetype. |
7 | 16 if did_filetype() |
17 finish | |
18 endif | |
19 | |
20 " Load the user defined scripts file first | |
21 " Only do this when the FileType autocommand has not been triggered yet | |
279 | 22 if exists("myscriptsfile") && filereadable(expand(myscriptsfile)) |
7 | 23 execute "source " . myscriptsfile |
24 if did_filetype() | |
25 finish | |
26 endif | |
27 endif | |
28 | |
27692
7346315e8517
patch 8.2.4372: filetype detection from file contents is in legacy script
Bram Moolenaar <Bram@vim.org>
parents:
27132
diff
changeset
|
29 " The main code is in a compiled function for speed. |
7346315e8517
patch 8.2.4372: filetype detection from file contents is in legacy script
Bram Moolenaar <Bram@vim.org>
parents:
27132
diff
changeset
|
30 call dist#script#DetectFiletype() |