Skip to content

Commit

Permalink
feat(nvim): biomeがアタッチされているとき、ts_lsやnull-lsではフォーマットしない
Browse files Browse the repository at this point in the history
  • Loading branch information
yuma140902 committed Sep 23, 2024
1 parent 837314b commit 005a711
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion neovim/nvim/lua/rc/lib.lua
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,13 @@ function M.do_format(bufnr)
vim.lsp.buf.format({
filter = function(client_)
-- bufnrとclient_をもとに、各LSPサーバでフォーマットを行うかどうか決定する
-- 今のところはいつもtrueを返す。つまりアタッチされているすべてのLSPサーバでフォーマットを行う
if client_.name == 'ts_ls' or client_.name == 'null-ls' then
-- biomeがアタッチされているとき、ts_lsやnull-lsではフォーマットしない
local biome_attached = #(vim.lsp.get_clients({ bufnr = bufnr, name = 'biome' })) ~= 0
if biome_attached then
return false
end
end
return true
end,
bufnr = bufnr,
Expand Down

0 comments on commit 005a711

Please sign in to comment.