We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
list_formatters
list_formatters_for_buffer
1 parent d101258 commit 41bbc1cCopy full SHA for 41bbc1c
lua/astroui/status/provider.lua
@@ -541,7 +541,7 @@ function M.lsp_client_names(opts)
541
if opts.integrations.conform and package.loaded["conform"] then -- conform integration
542
local conform = require "conform"
543
if not conform.will_fallback_lsp { bufnr = bufnr } then
544
- vim.list_extend(buf_client_names, conform.list_formatters_for_buffer(bufnr))
+ vim.list_extend(buf_client_names, vim.tbl_map(function(c) return c.name end, conform.list_formatters(bufnr)))
545
end
546
547
if opts.integrations["nvim-lint"] and package.loaded["lint"] then -- nvim-lint integration
0 commit comments