mirror of
https://git.shadowkat.net/izaya/OC-PsychOS2.git
synced 2024-11-22 03:54:20 -05:00
Compare commits
2 Commits
fbef63f9b0
...
36a3912c84
Author | SHA1 | Date | |
---|---|---|---|
|
36a3912c84 | ||
|
2c9bb81fe9 |
@ -1,2 +1,3 @@
|
||||
minitel.lua
|
||||
tape-iofs.lua
|
||||
fsmanager.service
|
||||
|
32
exec/ed.lua
32
exec/ed.lua
@ -65,20 +65,38 @@ function ct.append(np)
|
||||
p=p+1
|
||||
ct.insert()
|
||||
end
|
||||
function ct.substitute(np)
|
||||
function ct.delete(np,n)
|
||||
ct.sp(np)
|
||||
table.remove(ft,p)
|
||||
ct.insert(np)
|
||||
_G.clip = ""
|
||||
for i = 1, (n or 1) do
|
||||
_G.clip = _G.clip .. table.remove(ft,p) .. "\n"
|
||||
end
|
||||
end
|
||||
function ct.delete(np)
|
||||
ct.sp(np)
|
||||
table.remove(ft,p)
|
||||
function ct.substitute(np,n)
|
||||
ct.delete(np,n)
|
||||
ct.insert(np)
|
||||
end
|
||||
function ct.filename(np)
|
||||
if np then fp = np end
|
||||
print(fp)
|
||||
end
|
||||
|
||||
local function rawpaste()
|
||||
for line in string.gmatch(_G.clip,"[^\n]") do
|
||||
print(string.format("%4d\t %s",p,line))
|
||||
table.insert(ft,p,line)
|
||||
end
|
||||
end
|
||||
function ct.pasteprevious(np)
|
||||
ct.sp(np)
|
||||
rawpaste()
|
||||
end
|
||||
function ct.paste(np)
|
||||
ct.sp(np)
|
||||
p = p + 1
|
||||
rawpaste()
|
||||
end
|
||||
|
||||
ct.o = ct.readfile
|
||||
ct.w = ct.writefile
|
||||
ct.l = ct.list
|
||||
@ -88,6 +106,8 @@ ct.a = ct.append
|
||||
ct.s = ct.substitute
|
||||
ct.d = ct.delete
|
||||
ct.f = ct.filename
|
||||
ct.p = ct.pasteprevious
|
||||
ct.P = ct.paste
|
||||
|
||||
ct.readfile(fp)
|
||||
|
||||
|
11
service/clipboard.lua
Normal file
11
service/clipboard.lua
Normal file
@ -0,0 +1,11 @@
|
||||
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
|
||||
end
|
Loading…
Reference in New Issue
Block a user