diff options
author | Gregory Anders <8965202+gpanders@users.noreply.github.com> | 2022-02-24 10:02:17 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-24 10:02:17 -0700 |
commit | fdea15723fab6a3ee96218f13669d9f2e0a6d6d7 (patch) | |
tree | ee2fca26bf40dbe5e07fae23bd9ee4135be320a9 /runtime/filetype.lua | |
parent | b5bf4877c0239767c1095e4567e67c222bea38a0 (diff) | |
download | rneovim-fdea15723fab6a3ee96218f13669d9f2e0a6d6d7.tar.gz rneovim-fdea15723fab6a3ee96218f13669d9f2e0a6d6d7.tar.bz2 rneovim-fdea15723fab6a3ee96218f13669d9f2e0a6d6d7.zip |
feat(filetype): support scripts.vim with filetype.lua (#17517)
When filetype.vim is disabled, create the autocommand that runs
scripts.vim in filetype.lua.
Diffstat (limited to 'runtime/filetype.lua')
-rw-r--r-- | runtime/filetype.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/runtime/filetype.lua b/runtime/filetype.lua index fcfc5701f0..74e427c358 100644 --- a/runtime/filetype.lua +++ b/runtime/filetype.lua @@ -7,6 +7,7 @@ if vim.g.do_filetype_lua ~= 1 then return end +-- TODO: Remove vim.cmd once Lua autocommands land vim.cmd [[ augroup filetypedetect au BufRead,BufNewFile * call v:lua.vim.filetype.match(expand('<afile>')) @@ -18,6 +19,12 @@ runtime! ftdetect/*.lua " Set a marker so that the ftdetect scripts are not sourced a second time by filetype.vim let g:did_load_ftdetect = 1 +" If filetype.vim is disabled, set up the autocmd to use scripts.vim +if exists('did_load_filetypes') + au BufRead,BufNewFile * if !did_filetype() && expand('<amatch>') !~ g:ft_ignore_pat | runtime! scripts.vim | endif + au StdinReadPost * if !did_filetype() | runtime! scripts.vim | endif +endif + augroup END ]] |