pojokcodeid.nvim-lazy/lua/user/utils/formatter.lua

11 lines
286 B
Lua
Raw Normal View History

2024-05-21 08:33:21 +07:00
local null_ls = require("null-ls")
local M = {}
M.list_registered = function(filetype)
local method = null_ls.methods.FORMATTING
local registered_providers = require("user.utils.lsp").list_registered_providers_names(filetype)
return registered_providers[method] or {}
end
return M