1
0
mirror of https://github.com/kepler155c/opus synced 2024-07-06 12:03:20 +00:00
opus/sys/autorun/clipboard.lua
kepler155c@gmail.com e59400eb2b transition to kernel
2018-01-21 05:44:13 -05:00

27 lines
604 B
Lua

_G.requireInjector(_ENV)
local Util = require('util')
local kernel = _G.kernel
local keyboard = _G.device.keyboard
local os = _G.os
local textutils = _G.textutils
local data
kernel.hook('clipboard_copy', function(_, args)
data = args[1]
end)
keyboard.addHotkey('control-shift-paste', function(_, args)
if type(data) == 'table' then
local s, m = pcall(textutils.serialize, data)
data = (s and m) or Util.tostring(data)
end
-- replace the event paste data with our internal data
args[1] = Util.tostring(data or '')
if data then
os.queueEvent('paste', data)
end
end)