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