Mercurial > vim
annotate runtime/scripts.vim @ 31780:8f15c56ff2fb v9.0.1222
patch 9.0.1222: terminal tests are flaky on MacOS
Commit: https://github.com/vim/vim/commit/e446a017ffeaf1941589ac51ce9153b859018e5b
Author: Yegappan Lakshmanan <yegappan@yahoo.com>
Date: Thu Jan 19 17:49:58 2023 +0000
patch 9.0.1222: terminal tests are flaky on MacOS
Problem: Terminal tests are flaky on MacOS.
Solution: Add TermWait() calls. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/11852)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 19 Jan 2023 19:00:06 +0100 |
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() |