mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 00:25:47 +02:00
53 lines
2.2 KiB
Lua
53 lines
2.2 KiB
Lua
return {
|
|
"okuuva/auto-save.nvim",
|
|
version = "^1.0.0", -- see https://devhints.io/semver, alternatively use '*' to use the latest tagged release
|
|
cmd = "ASToggle", -- optional for lazy loading on command
|
|
event = { "InsertLeave", "TextChanged" }, -- optional for lazy loading on trigger events
|
|
opts = {
|
|
enabled = true, -- start auto-save when the plugin is loaded (i.e. when your package manager loads it)
|
|
trigger_events = { -- See :h events
|
|
immediate_save = { "BufLeave", "FocusLost" }, -- vim events that trigger an immediate save
|
|
defer_save = { "InsertLeave", "TextChanged" }, -- vim events that trigger a deferred save (saves after `debounce_delay`)
|
|
cancel_deferred_save = { "InsertEnter" }, -- vim events that cancel a pending deferred save
|
|
},
|
|
-- function that takes the buffer handle and determines whether to save the current buffer or not
|
|
-- return true: if buffer is ok to be saved
|
|
-- return false: if it's not ok to be saved
|
|
-- if set to `nil` then no specific condition is applied
|
|
condition = nil,
|
|
write_all_buffers = false, -- write all buffers when the current one meets `condition`
|
|
noautocmd = false, -- do not execute autocmds when saving
|
|
lockmarks = false, -- lock marks when saving, see `:h lockmarks` for more details
|
|
debounce_delay = 1500, -- delay after which a pending save is executed
|
|
-- log debug messages to 'auto-save.log' file in neovim cache directory, set to `true` to enable
|
|
debug = false,
|
|
},
|
|
config = function(_, opts)
|
|
require("auto-save").setup(opts)
|
|
local group = vim.api.nvim_create_augroup("autosave", {})
|
|
|
|
vim.api.nvim_create_autocmd("User", {
|
|
pattern = "AutoSaveWritePost",
|
|
group = group,
|
|
callback = function(opts)
|
|
local ftype = vim.bo.filetype
|
|
if
|
|
opts.data.saved_buffer ~= nil
|
|
and ftype ~= "TelescopePrompt"
|
|
and not substring(tostring(ftype), "dap")
|
|
then
|
|
local filename = vim.api.nvim_buf_get_name(opts.data.saved_buffer)
|
|
local is_ok = pcall(require, "notify")
|
|
if is_ok then
|
|
require("notify")("AutoSave: saved at " .. vim.fn.strftime("%H:%M:%S"))
|
|
else
|
|
print("AutoSave: saved " .. filename .. " at " .. vim.fn.strftime("%H:%M:%S"))
|
|
end
|
|
end
|
|
end,
|
|
})
|
|
end,
|
|
keys = {
|
|
{ "<leader>n", ":ASToggle<CR>", desc = " Toggle auto-save" },
|
|
},
|
|
}
|