Skip to content

Commit 4ce0462

Browse files
RulentWavetimhammond
authored andcommitted
changed Conform's format_on_save lambda so that buffers that match disable_filetypes return nil. This allows you to enable a formatter for langages in the disable_filetypes table to have a formatter that can be run manually with Leader-f but doesnt enable format_on_save for them (nvim-lua#1395)
1 parent b316edf commit 4ce0462

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

init.lua

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -750,16 +750,14 @@ require('lazy').setup({
750750
-- have a well standardized coding style. You can add additional
751751
-- languages here or re-enable it for the disabled ones.
752752
local disable_filetypes = { c = true, cpp = true }
753-
local lsp_format_opt
754753
if disable_filetypes[vim.bo[bufnr].filetype] then
755-
lsp_format_opt = 'never'
754+
return nil
756755
else
757-
lsp_format_opt = 'fallback'
756+
return {
757+
timeout_ms = 500,
758+
lsp_format = 'fallback',
759+
}
758760
end
759-
return {
760-
timeout_ms = 500,
761-
lsp_format = lsp_format_opt,
762-
}
763761
end,
764762
formatters_by_ft = {
765763
lua = { 'stylua' },

0 commit comments

Comments
 (0)