diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2022-04-08 19:53:41 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-08 19:53:41 +0200 |
| commit | d3068d34cc56a4c66f10a83922d2500f6ca9e651 (patch) | |
| tree | a49b622f1965da108f3b98c7b129c38cf6ec0f08 /runtime/doc | |
| parent | b4ec6af12a97a922fe7cd90523e397bb89c83802 (diff) | |
| download | rneovim-d3068d34cc56a4c66f10a83922d2500f6ca9e651.tar.gz rneovim-d3068d34cc56a4c66f10a83922d2500f6ca9e651.tar.bz2 rneovim-d3068d34cc56a4c66f10a83922d2500f6ca9e651.zip | |
vim-patch:partial:cbaff5e06ec5 (#18042)
Update runtime files
https://github.com/vim/vim/commit/cbaff5e06ec525d31dc44093125c42029e01d508
omit doc updates here
Diffstat (limited to 'runtime/doc')
| -rw-r--r-- | runtime/doc/filetype.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/runtime/doc/filetype.txt b/runtime/doc/filetype.txt index bd3acfcac7..357c5d1cec 100644 --- a/runtime/doc/filetype.txt +++ b/runtime/doc/filetype.txt @@ -140,6 +140,7 @@ variables can be used to overrule the filetype used for certain extensions: *.asm g:asmsyntax |ft-asm-syntax| *.asp g:filetype_asp |ft-aspvbs-syntax| |ft-aspperl-syntax| *.bas g:filetype_bas |ft-basic-syntax| + *.dat g:filetype_dat *.frm g:filetype_frm |ft-form-syntax| *.fs g:filetype_fs |ft-forth-syntax| *.i g:filetype_i |ft-progress-syntax| @@ -149,10 +150,15 @@ variables can be used to overrule the filetype used for certain extensions: *.pl g:filetype_pl *.pp g:filetype_pp |ft-pascal-syntax| *.prg g:filetype_prg + *.src g:filetype_src *.sh g:bash_is_sh |ft-sh-syntax| *.tex g:tex_flavor |ft-tex-plugin| *.w g:filetype_w |ft-cweb-syntax| +For a few filetypes the global variable is used only when the filetype could +not be detected: + *.r g:filetype_r |ft-rexx-syntax| + *filetype-ignore* To avoid that certain files are being inspected, the g:ft_ignore_pat variable is used. The default value is set like this: > |