diff options
author | Guldoman <giulio.lettieri@gmail.com> | 2022-11-02 08:10:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-02 08:10:57 +0100 |
commit | 9bf5649c7df6bbd746956e9a96b616f61a59fa9b (patch) | |
tree | 725e2d12dc826f8ebe73807a705371cb4c5af4d9 /plugins/openfilelocation.lua | |
parent | 49139e03398c9d0ecb347267a4882a4eb3f7ee23 (diff) | |
download | lite-xl-plugins-9bf5649c7df6bbd746956e9a96b616f61a59fa9b.tar.gz lite-xl-plugins-9bf5649c7df6bbd746956e9a96b616f61a59fa9b.zip |
Use new `command.add` syntax (#136)
Diffstat (limited to 'plugins/openfilelocation.lua')
-rw-r--r-- | plugins/openfilelocation.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/openfilelocation.lua b/plugins/openfilelocation.lua index 603c7b6..dd88248 100644 --- a/plugins/openfilelocation.lua +++ b/plugins/openfilelocation.lua @@ -28,9 +28,9 @@ config.plugins.openfilelocation = common.merge({ } }, config.plugins.openfilelocation) -command.add("core.docview", { - ["open-file-location:open-file-location"] = function() - local doc = core.active_view.doc +command.add("core.docview!", { + ["open-file-location:open-file-location"] = function(dv) + local doc = dv.doc if not doc.filename then core.error "Cannot open location of unsaved doc" return |