g:livedown_browser = "firefox" is the default.
This translates to a node exec firefox <url> in livedown.
On OSX firefox is not on the path.
Solution:
g:livedown_browser is unset by default.
The --browser flag is not passed.
The system launcher (ex. open on OSX), is used to open the url.
Commentary:
livedown has the assumption that --browser is optional, when it's not
provided, it uses the system's launcher (ex. open on OSX). vim-livedown
should be the same way.
Disclaimer:
I did not test on linux or windows. I did test on OSX including what was added to the documentation.
Bug:
g:livedown_browser = "firefox"
is the default. This translates to a nodeexec firefox <url>
inlivedown
. On OSXfirefox
is not on the path.Solution:
g:livedown_browser
is unset by default. The--browser
flag is not passed. The system launcher (ex.open
on OSX), is used to open the url.Commentary:
livedown
has the assumption that--browser
is optional, when it's not provided, it uses the system's launcher (ex.open
on OSX).vim-livedown
should be the same way.Disclaimer: I did not test on
linux
orwindows
. I did test onOSX
including what was added to the documentation.