local Util = require("lazy.core.util") local M = {} ---@type PluginLspOpts M.opts = nil -- Allow plugins to set a custom formatter for a buffer. -- See the conform extra for an example. ---@type fun(bufnr:number):boolean M.custom_format = nil function M.enabled() return M.opts.autoformat end function M.toggle() if vim.b.autoformat == false then vim.b.autoformat = nil M.opts.autoformat = true else M.opts.autoformat = not M.opts.autoformat end if M.opts.autoformat then Util.info("Enabled format on save", { title = "Format" }) else Util.warn("Disabled format on save", { title = "Format" }) end end ---@param opts? {force?:boolean} function M.format(opts) local buf = vim.api.nvim_get_current_buf() if vim.b.autoformat == false and not (opts and opts.force) then return end if M.custom_format and Util.try(function() return M.custom_format(buf) end, { msg = "Custom formatter failed" }) then return end local formatters = M.get_formatters(buf) local client_ids = vim.tbl_map(function(client) return client.id end, formatters.active) if #client_ids == 0 then if opts and opts.force then Util.warn("No formatter available", { title = "LazyVim" }) end return end vim.lsp.buf.format(vim.tbl_deep_extend("force", { bufnr = buf, filter = function(client) return vim.tbl_contains(client_ids, client.id) end, }, require("lazyvim.util").opts("nvim-lspconfig").format or {})) end -- Gets all lsp clients that support formatting. -- When a null-ls formatter is available for the current filetype, -- only null-ls formatters are returned. function M.get_formatters(bufnr) local ft = vim.bo[bufnr].filetype -- check if we have any null-ls formatters for the current filetype local null_ls = package.loaded["null-ls"] and require("null-ls.sources").get_available(ft, "NULL_LS_FORMATTING") or {} ---@class LazyVimFormatters local ret = { ---@type lsp.Client[] active = {}, ---@type lsp.Client[] available = {}, null_ls = null_ls, } ---@type lsp.Client[] local clients = vim.lsp.get_active_clients({ bufnr = bufnr }) for _, client in ipairs(clients) do if M.supports_format(client) then if (#null_ls > 0 and client.name == "null-ls") or #null_ls == 0 then table.insert(ret.active, client) else table.insert(ret.available, client) end end end return ret end -- Gets all lsp clients that support formatting -- and have not disabled it in their client config ---@param client lsp.Client function M.supports_format(client) if client.config and client.config.capabilities and client.config.capabilities.documentFormattingProvider == false then return false end return client.supports_method("textDocument/formatting") or client.supports_method("textDocument/rangeFormatting") end ---@param opts PluginLspOpts function M.setup(opts) M.opts = opts vim.api.nvim_create_autocmd("BufWritePre", { group = vim.api.nvim_create_augroup("LazyVimFormat", {}), callback = function() if M.opts.autoformat then M.format() end end, }) end return M