blob: 9518adf7400e956435984cc999addacb4515515c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
-- mod-version:2 -- lite-xl 2.0
local core = require "core"
local config = require "core.config"
local Doc = require "core.doc"
local command = require "core.command"
-- this is used to detect the wait time
local last_keypress = os.time()
-- this exists so that we don't end up with multiple copies of the loop running at once
local looping = false
local on_text_change = Doc.on_text_change
-- the approximate amount of time, in seconds, that it takes to trigger an autosave
config.plugins.autosave = { timeout = 1 }
local function loop_for_save()
while looping do
if os.difftime(os.time(), last_keypress) >= config.plugins.autosave.timeout then
command.perform "doc:save"
-- stop loop
looping = false
end
-- wait the timeout. may cause timeout to be slightly imprescise
coroutine.yield(config.plugins.autosave.timeout)
end
end
local function updatepress()
-- set last keypress time to now
last_keypress = os.time()
-- put loop in coroutine so it doesn't lag out this script
if not looping then
looping = true
core.add_thread(loop_for_save)
end
end
function Doc:on_text_change(type)
-- check if file is saved
if self.filename then
updatepress()
end
return on_text_change(self, type)
end
|