bomberpac/vendor/lite-plugins/plugins/copyfilelocation.lua

18 lines
489 B
Lua
Raw Permalink Normal View History

2021-02-07 21:56:19 +00:00
local core = require "core"
local command = require "core.command"
local config = require "core.config"
command.add("core.docview", {
["copy-file-location:copy-file-location"] = function()
local doc = core.active_view.doc
if not doc.filename then
core.error "Cannot copy location of unsaved doc"
return
end
local filename = system.absolute_path(doc.filename)
core.log("Copying to clipboard \"%s\"", filename)
system.set_clipboard(filename)
end
})