MeanderingProgrammer / render-markdown.nvim

Plugin to improve viewing Markdown files in Neovim
MIT License
1.34k stars 32 forks source link

bug: ERROR No healthcheck found for "render-markdown" plugin. #145

Closed afrischk closed 3 weeks ago

afrischk commented 3 weeks ago

Neovim version (nvim -v)

0.10.1

Operating system

Linux

Terminal emulator / GUI

WezTerm

Describe the bug

The plugin is configured and installed but commands like :RenderMarkdown are not available. Also the health check can not detect the plugin.

Expected behavior

Plugin is loaded and commands are available.

Healthcheck output

render-markdown: 

- ERROR No healthcheck found for "render-markdown" plugin.

Plugin configuration

I use Packer for plugins.

    use { "nvim-tree/nvim-web-devicons"}
    use { "nvim-treesitter/nvim-treesitter", run = ":TSUpdate" }
    use({
        'MeanderingProgrammer/render-markdown.nvim',
        after = { 'nvim-treesitter/nvim-treesitter' },
        requires = { 'nvim-tree/nvim-web-devicons', opt = true },
        config = function()
            require('render-markdown').setup({})
        end,
    })

Plugin error log

Not an editor command: RenderMarkdown

Confirmations

Additional information

No response

afrischk commented 3 weeks ago

Update 1

Seems to be an issue with Packer:

[packer.nvim] [ERROR 07:52:47] async.lua:20: Error in coroutine: ...ite/pack/packer/start/packer.nvim/lua/packer/compile.lua:622: Dependency nvim-treesitter/nvim-treesitter for { "render-markdown.nvim" } not found
afrischk commented 3 weeks ago

Update 2

after = { 'nvim-treesitter/nvim-treesitter' } has to be after = { 'nvim-treesitter' } as documented.

The issue was the user :D Sorry for the noise.