mirror of
https://github.com/zoriya/auto-save.nvim.git
synced 2026-08-16 02:44:35 +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, {})
|