Jeremy Penner
cb5132f393
subrepo: subdir: "vendor/lite-plugins" merged: "de4227d" upstream: origin: "https://github.com/rxi/lite-plugins" branch: "master" commit: "de4227d" git-subrepo: version: "0.4.2" origin: "https://github.com/ingydotnet/git-subrepo" commit: "65fde50"
18 lines
489 B
Lua
18 lines
489 B
Lua
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
|
|
})
|