refactor: use Lua autocommands in filetype.lua (#17711)

This commit is contained in:
Gregory Anders 2022-03-13 15:52:41 -06:00 committed by GitHub
parent ce537bb232
commit f9f843e02e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,27 +7,37 @@ 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>'))
vim.api.nvim_create_augroup("filetypedetect", {clear = false})
" These *must* be sourced after the autocommand above is created
vim.api.nvim_create_autocmd({"BufRead", "BufNewFile"}, {
group = "filetypedetect",
callback = function()
vim.filetype.match(vim.fn.expand("<afile>"))
end,
})
-- These *must* be sourced after the autocommand above is created
vim.cmd [[
runtime! ftdetect/*.vim
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
]]
-- Set a marker so that the ftdetect scripts are not sourced a second time by filetype.vim
vim.g.did_load_ftdetect = 1
-- If filetype.vim is disabled, set up the autocmd to use scripts.vim
if vim.g.did_load_filetypes then
vim.api.nvim_create_autocmd({"BufRead", "BufNewFile"}, {
group = "filetypedetect",
command = "if !did_filetype() && expand('<amatch>') !~ g:ft_ignore_pat | runtime! scripts.vim | endif",
})
vim.api.nvim_create_autocmd("StdinReadPost", {
group = "filetypedetect",
command = "if !did_filetype() | runtime! scripts.vim | endif",
})
end
if not vim.g.ft_ignore_pat then
vim.g.ft_ignore_pat = "\\.\\(Z\\|gz\\|bz2\\|zip\\|tgz\\)$"
end