aboutsummaryrefslogtreecommitdiff
path: root/plugins/copyfilelocation.lua
diff options
context:
space:
mode:
authorGuldoman <giulio.lettieri@gmail.com>2022-11-02 08:10:57 +0100
committerGitHub <noreply@github.com>2022-11-02 08:10:57 +0100
commit9bf5649c7df6bbd746956e9a96b616f61a59fa9b (patch)
tree725e2d12dc826f8ebe73807a705371cb4c5af4d9 /plugins/copyfilelocation.lua
parent49139e03398c9d0ecb347267a4882a4eb3f7ee23 (diff)
downloadlite-xl-plugins-9bf5649c7df6bbd746956e9a96b616f61a59fa9b.tar.gz
lite-xl-plugins-9bf5649c7df6bbd746956e9a96b616f61a59fa9b.zip
Use new `command.add` syntax (#136)
Diffstat (limited to 'plugins/copyfilelocation.lua')
-rw-r--r--plugins/copyfilelocation.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/copyfilelocation.lua b/plugins/copyfilelocation.lua
index eb7b1a9..34f55d8 100644
--- a/plugins/copyfilelocation.lua
+++ b/plugins/copyfilelocation.lua
@@ -3,8 +3,8 @@ 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
+ ["copy-file-location:copy-file-location"] = function(dv)
+ local doc = dv.doc
if not doc.abs_filename then
core.error "Cannot copy location of unsaved doc"
return