blob: eb7b1a9866a39b715fa82b1f617f318f1570f736 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
-- mod-version:3
local core = require "core"
local command = require "core.command"
command.add("core.docview", {
["copy-file-location:copy-file-location"] = function()
local doc = core.active_view.doc
if not doc.abs_filename then
core.error "Cannot copy location of unsaved doc"
return
end
core.log("Copying to clipboard \"%s\"", doc.abs_filename)
system.set_clipboard(doc.abs_filename)
end
})
|