Skip to content

Commit

Permalink
fix: options.binary wasn't applied
Browse files Browse the repository at this point in the history
  • Loading branch information
marioortizmanero committed Oct 19, 2021
1 parent 4c67241 commit 883b3d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/adoc_pdf_live/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ local function with_defaults(options)
enabled = options.enabled or false,
-- The viewer command must be like `command <file>`
viewer = options.viewer or 'zathura',
binary = 'asciidoctor-pdf',
binary = options.binary or 'asciidoctor-pdf',
params = options.params or '',
-- Shows the command stdout when activated
debug = options.debug or false,
Expand Down

0 comments on commit 883b3d7

Please sign in to comment.