Compare commits

..

No commits in common. "7dda36fd1dbc108f5e0e080d200b2034ee2662a8" and "124b39c96de13b1f8b0caa801c3d657660eaa0ca" have entirely different histories.

3 changed files with 9 additions and 21 deletions

View File

@ -1,5 +0,0 @@
root = true
[*.lua]
indent_style = space
indent_size = 1

1
.gitignore vendored
View File

@ -1,5 +1,4 @@
*.cpio *.cpio
*.af *.af
apidoc.md
/target /target
/doc /doc

View File

@ -1,17 +1,11 @@
local lc = computer.uptime()
_G.clip = "" _G.clip = ""
while true do
function start() local eT = {coroutine.yield()}
return os.spawn(function() if eT[1] == "clipboard" then
local lc if computer.uptime() > lc + 5 then
while true do _G.clip = ""
local eT = {coroutine.yield()} end
if eT[1] == "clipboard" then _G.clip = _G.clip .. eT[3]
if computer.uptime() > lc + 5 then end
_G.clip = ""
end
lc = computer.uptime()
_G.clip = _G.clip .. eT[3]
end
end
end)
end end