opus/sys/autorun/clipboard.lua

23 lines
516 B
Lua
Raw Normal View History

2017-10-08 21:45:01 +00:00
_G.requireInjector()
2017-10-14 07:41:54 +00:00
local Util = require('util')
2017-10-14 07:41:54 +00:00
local kernel = _G.kernel
local keyboard = _G.device.keyboard
local textutils = _G.textutils
2017-10-15 23:55:05 +00:00
local data
kernel.hook('clipboard_copy', function(_, args)
2017-10-15 23:55:05 +00:00
data = args[1]
2017-10-14 07:41:54 +00:00
end)
keyboard.addHotkey('shift-paste', function(_, args)
2017-10-15 23:55:05 +00:00
if type(data) == 'table' then
local s, m = pcall(textutils.serialize, data)
data = (s and m) or Util.tostring(data)
2017-10-14 07:41:54 +00:00
end
2017-10-15 23:55:05 +00:00
-- replace the event paste data with our internal data
args[1] = Util.tostring(data or '')
2017-10-14 07:41:54 +00:00
end)