2022-01-04 07:28:29 -07:00
|
|
|
if vim.g.did_load_filetypes and vim.g.did_load_filetypes ~= 0 then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
-- For now, make this opt-in with a global variable
|
|
|
|
if vim.g.do_filetype_lua ~= 1 then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2022-05-09 02:23:51 -07:00
|
|
|
vim.api.nvim_create_augroup('filetypedetect', { clear = false })
|
2022-03-13 14:52:41 -07:00
|
|
|
|
2022-05-09 02:23:51 -07:00
|
|
|
vim.api.nvim_create_autocmd({ 'BufRead', 'BufNewFile' }, {
|
|
|
|
group = 'filetypedetect',
|
2022-03-13 14:52:41 -07:00
|
|
|
callback = function()
|
2022-05-09 02:23:51 -07:00
|
|
|
vim.filetype.match(vim.fn.expand('<afile>'))
|
2022-03-13 14:52:41 -07:00
|
|
|
end,
|
|
|
|
})
|
2022-01-04 07:28:29 -07:00
|
|
|
|
2022-03-13 14:52:41 -07:00
|
|
|
-- These *must* be sourced after the autocommand above is created
|
2022-04-23 08:57:38 -07:00
|
|
|
if not vim.g.did_load_ftdetect then
|
2022-05-09 02:23:51 -07:00
|
|
|
vim.cmd([[
|
2022-04-23 08:57:38 -07:00
|
|
|
augroup filetypedetect
|
|
|
|
runtime! ftdetect/*.vim
|
|
|
|
runtime! ftdetect/*.lua
|
|
|
|
augroup END
|
2022-05-09 02:23:51 -07:00
|
|
|
]])
|
2022-04-23 08:57:38 -07:00
|
|
|
end
|
2022-01-04 07:28:29 -07:00
|
|
|
|
2022-03-13 14:52:41 -07:00
|
|
|
-- Set a marker so that the ftdetect scripts are not sourced a second time by filetype.vim
|
|
|
|
vim.g.did_load_ftdetect = 1
|
2022-01-04 07:28:29 -07:00
|
|
|
|
2022-03-13 14:52:41 -07:00
|
|
|
-- If filetype.vim is disabled, set up the autocmd to use scripts.vim
|
|
|
|
if vim.g.did_load_filetypes then
|
2022-05-09 02:23:51 -07:00
|
|
|
vim.api.nvim_create_autocmd({ 'BufRead', 'BufNewFile' }, {
|
|
|
|
group = 'filetypedetect',
|
2022-03-13 14:52:41 -07:00
|
|
|
command = "if !did_filetype() && expand('<amatch>') !~ g:ft_ignore_pat | runtime! scripts.vim | endif",
|
|
|
|
})
|
2022-02-24 10:02:17 -07:00
|
|
|
|
2022-05-09 02:23:51 -07:00
|
|
|
vim.api.nvim_create_autocmd('StdinReadPost', {
|
|
|
|
group = 'filetypedetect',
|
|
|
|
command = 'if !did_filetype() | runtime! scripts.vim | endif',
|
2022-03-13 14:52:41 -07:00
|
|
|
})
|
|
|
|
end
|
2022-01-04 15:02:01 -07:00
|
|
|
|
|
|
|
if not vim.g.ft_ignore_pat then
|
2022-05-09 02:23:51 -07:00
|
|
|
vim.g.ft_ignore_pat = '\\.\\(Z\\|gz\\|bz2\\|zip\\|tgz\\)$'
|
2022-01-04 15:02:01 -07:00
|
|
|
end
|