mirror of
https://github.com/neovim/neovim.git
synced 2026-05-04 04:55:16 +00:00
chore: format runtime with stylua
This commit is contained in:
@@ -7,23 +7,23 @@ if vim.g.do_filetype_lua ~= 1 then
|
||||
return
|
||||
end
|
||||
|
||||
vim.api.nvim_create_augroup("filetypedetect", {clear = false})
|
||||
vim.api.nvim_create_augroup('filetypedetect', { clear = false })
|
||||
|
||||
vim.api.nvim_create_autocmd({"BufRead", "BufNewFile"}, {
|
||||
group = "filetypedetect",
|
||||
vim.api.nvim_create_autocmd({ 'BufRead', 'BufNewFile' }, {
|
||||
group = 'filetypedetect',
|
||||
callback = function()
|
||||
vim.filetype.match(vim.fn.expand("<afile>"))
|
||||
vim.filetype.match(vim.fn.expand('<afile>'))
|
||||
end,
|
||||
})
|
||||
|
||||
-- These *must* be sourced after the autocommand above is created
|
||||
if not vim.g.did_load_ftdetect then
|
||||
vim.cmd [[
|
||||
vim.cmd([[
|
||||
augroup filetypedetect
|
||||
runtime! ftdetect/*.vim
|
||||
runtime! ftdetect/*.lua
|
||||
augroup END
|
||||
]]
|
||||
]])
|
||||
end
|
||||
|
||||
-- Set a marker so that the ftdetect scripts are not sourced a second time by filetype.vim
|
||||
@@ -31,17 +31,17 @@ 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",
|
||||
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",
|
||||
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\\)$"
|
||||
vim.g.ft_ignore_pat = '\\.\\(Z\\|gz\\|bz2\\|zip\\|tgz\\)$'
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user