Compare commits
No commits in common. "12c5e919e829c067ba795fe7f1e02037cbc0b4e9" and "20abfd7ad7a56d7a73d83f6443bb7fe9a72f6b1a" have entirely different histories.
12c5e919e8
...
20abfd7ad7
1 changed files with 13 additions and 34 deletions
|
@ -15,31 +15,10 @@ return {
|
||||||
swift = { "swift_format" },
|
swift = { "swift_format" },
|
||||||
["*"] = { "trim_whitespace", "trim_newlines" },
|
["*"] = { "trim_whitespace", "trim_newlines" },
|
||||||
},
|
},
|
||||||
format_on_save = function(bufnr)
|
format_on_save = {
|
||||||
-- Disable with a global or buffer-local variable
|
timeout_ms = 500,
|
||||||
if vim.g.disable_autoformat or vim.b[bufnr].disable_autoformat then
|
lsp_fallback = true,
|
||||||
return
|
},
|
||||||
end
|
|
||||||
return { timeout_ms = 500, lsp_fallback = true }
|
|
||||||
end,
|
|
||||||
})
|
|
||||||
|
|
||||||
vim.api.nvim_create_user_command("FormatDisable", function(args)
|
|
||||||
if args.bang then
|
|
||||||
-- FormatDisable! will disable formatting just for this buffer
|
|
||||||
vim.b.disable_autoformat = true
|
|
||||||
else
|
|
||||||
vim.g.disable_autoformat = true
|
|
||||||
end
|
|
||||||
end, {
|
|
||||||
desc = "Disable autoformat-on-save",
|
|
||||||
bang = true,
|
|
||||||
})
|
|
||||||
vim.api.nvim_create_user_command("FormatEnable", function()
|
|
||||||
vim.b.disable_autoformat = false
|
|
||||||
vim.g.disable_autoformat = false
|
|
||||||
end, {
|
|
||||||
desc = "Re-enable autoformat-on-save",
|
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue