mirror of
https://github.com/kepler155c/opus
synced 2024-11-04 16:06:16 +00:00
24 lines
500 B
Lua
24 lines
500 B
Lua
local Util = require('opus.util')
|
|
|
|
local kernel = _G.kernel
|
|
local keyboard = _G.device.keyboard
|
|
local os = _G.os
|
|
local textutils = _G.textutils
|
|
|
|
kernel.hook('clipboard_copy', function(_, args)
|
|
keyboard.clipboard = args[1]
|
|
end)
|
|
|
|
keyboard.addHotkey('shift-paste', function()
|
|
local data = keyboard.clipboard
|
|
|
|
if type(data) == 'table' then
|
|
local s, m = pcall(textutils.serialize, data)
|
|
data = s and m or Util.tostring(data)
|
|
end
|
|
|
|
if data then
|
|
os.queueEvent('paste', data)
|
|
end
|
|
end)
|