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/pdfview.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/pdfview.lua')
-rw-r--r-- | plugins/pdfview.lua | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/plugins/pdfview.lua b/plugins/pdfview.lua index 199584e..56d5eba 100644 --- a/plugins/pdfview.lua +++ b/plugins/pdfview.lua @@ -3,10 +3,8 @@ local core = require "core" local command = require "core.command" local keymap = require "core.keymap" -command.add("core.docview", { - ["pdfview:show-preview"] = function() - local av = core.active_view - +command.add("core.docview!", { + ["pdfview:show-preview"] = function(av) -- User's home directory local homedir = "" |