mirror of
https://github.com/zoriya/auto-save.nvim.git
synced 2026-06-13 06:05:28 +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, {})
|