iamcco / markdown-preview.nvim

markdown preview plugin for (neo)vim
MIT License
6.67k stars 277 forks source link

Does not work with Waterfox browser #548

Closed rozhelluk closed 1 year ago

rozhelluk commented 1 year ago

Describe the bug Waterfox opens with a blank page, while Epiphany opens in live mode with a markdown file (if you set Epiphany as the default browser instead Waterfox).

To Reproduce Steps to reproduce the behavior:

  1. Set Waterfox as the default browser
  2. Run :MarkdownPreview

Desktop (please complete the following information):

rozhelluk commented 1 year ago

fixed by adding

local config = {
  options = {
    g = {
      mkdp_browser = '/opt/waterfox/waterfox',
    },
  },
}
return config

into init.lua