mirror of
https://github.com/tiyn/tidy.nvim.git
synced 2025-06-16 03:57:45 +02:00
refactor: make toggle functionality more concise
vim.b.tidy_enabled appears to be redundant because of M.enabled. This commit removes it.
This commit is contained in:
parent
b157a2b511
commit
ae4f9b5e82
@ -3,16 +3,12 @@ local M = {}
|
||||
M.enabled = true
|
||||
|
||||
function M.toggle()
|
||||
if vim.b.tidy_enabled == false then
|
||||
vim.b.tidy_enabled = nil
|
||||
M.enabled = true
|
||||
else
|
||||
M.enabled = not M.enabled
|
||||
end
|
||||
if M.enabled then
|
||||
vim.notify("Tidy enabled on save", vim.log.levels.INFO, { title = "Tidy" })
|
||||
else
|
||||
M.enabled = not M.enabled
|
||||
|
||||
if not M.enabled then
|
||||
vim.notify("Tidy disabled on save", vim.log.levels.WARN, { title = "Tidy" })
|
||||
else
|
||||
vim.notify("Tidy enabled on save", vim.log.levels.INFO, { title = "Tidy" })
|
||||
end
|
||||
end
|
||||
|
||||
@ -61,10 +57,10 @@ function M.setup(opts)
|
||||
|
||||
local tidy_grp = vim.api.nvim_create_augroup("tidy", { clear = true })
|
||||
|
||||
vim.api.nvim_create_autocmd("BufWritePre", {
|
||||
vim.api.nvim_create_autocmd("BufWritePre", {
|
||||
group = tidy_grp,
|
||||
callback = function()
|
||||
if not M.enabled or vim.b.tidy_enabled == false or is_excluded_ft(opts) then
|
||||
if not M.enabled or is_excluded_ft(opts) then
|
||||
return false
|
||||
end
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user