blob: 51bcaace81a1c85d43dbbf9172af1050e6526b2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
-- mod-version:3 --lite-xl 2.1
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
})
|