diff options
author | Gregory Anders <8965202+gpanders@users.noreply.github.com> | 2022-01-04 07:28:29 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-04 07:28:29 -0700 |
commit | 3fd454bd4a6ceb1989d15cf2d3d5e11d7a253b2d (patch) | |
tree | 1718a362cf49adabd478fe16a6e35335681d8611 /runtime/filetype.vim | |
parent | cc62f3d6cb639abffb1b0b6ce47a481bc67003d2 (diff) | |
download | rneovim-3fd454bd4a6ceb1989d15cf2d3d5e11d7a253b2d.tar.gz rneovim-3fd454bd4a6ceb1989d15cf2d3d5e11d7a253b2d.tar.bz2 rneovim-3fd454bd4a6ceb1989d15cf2d3d5e11d7a253b2d.zip |
feat: filetype.lua (#16600)
Adds a new vim.filetype module that provides support for filetype detection in
Lua.
Diffstat (limited to 'runtime/filetype.vim')
-rw-r--r-- | runtime/filetype.vim | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim index 07969b3418..7fdbfe32d8 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -2407,10 +2407,12 @@ au BufNewFile,BufRead *.txt \| setf text \| endif -" Use the filetype detect plugins. They may overrule any of the previously -" detected filetypes. -runtime! ftdetect/*.vim -runtime! ftdetect/*.lua +if !exists('g:did_load_ftdetect') + " Use the filetype detect plugins. They may overrule any of the previously + " detected filetypes. + runtime! ftdetect/*.vim + runtime! ftdetect/*.lua +endif " NOTE: The above command could have ended the filetypedetect autocmd group " and started another one. Let's make sure it has ended to get to a consistent |