mirror of
https://github.com/zoriya/auto-save.nvim.git
synced 2025-12-05 22:26:12 +00:00
6 lines
122 B
Lua
6 lines
122 B
Lua
local command = vim.api.nvim_create_user_command
|
|
|
|
command("ASToggle", function()
|
|
require("auto-save").toggle()
|
|
end, {})
|