clipboard: Make the clipboard service work under the new service sys

This also adds a [.editorconfig](https://editorconfig.org/) and adds
apidoc.md to the gitignore.
Este commit está contenido en:
Amanda Cameron 2020-05-21 15:02:46 -04:00
padre 124b39c96d
commit 5213835970
Se han modificado 3 ficheros con 21 adiciones y 9 borrados

5
.editorconfig Archivo normal
Ver fichero

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

1
.gitignore vendido
Ver fichero

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

Ver fichero

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