Closed jiyeol-lee-kds closed 1 month ago
Where in your config is the text running_man?
Or are you referring to resolving emojis in markdown documents in general?
That's not a feature stated anywhere as far as I know. Is this because the emojis resolve in Github?
Where in your config is the text running_man?
Or are you referring to resolving emojis in markdown documents in general?
That's not a feature stated anywhere as far as I know. Is this because the emojis resolve in Github?
I reported it because emojis resolved in markdown documents when I was only using vimwiki
but since I added this plugin, it stops to resolve emojis. Do you think I missed some configuration?
Huh I didn't know vimwiki
had emoji support, but it looks like it does: https://github.com/search?q=repo%3Avimwiki%2Fvimwiki%20emoji&type=code.
I'm not really sure how to configure things so that this plugin does its part of the rendering and vimwiki
continues to resolve emojis. There's definitely going to be edge cases when 2 plugins try to do rendering.
My first though is that the emojis rely on the conceal level to work. Can you try adding the following to the config:
local setup = {
...
win_options = {
conceallevel = { rendered = 2 },
},
}
I just tried rendered = 0
, rendered = 1
, rendered = 2
and rendered = 3
but no luck :(
Unfortunately I don't use vimwiki and do not know how it works well enough to debug this.
Plugins that attempt to do the same thing, i.e. rendering, are likely to clash in unexpected ways.
I'm not going to be able to put in the time to figure this one out so closing the issue. But if you do after some tinkering please update this issue so I can inform anyone else that experiences the same problem.
Neovim version (nvim -v)
0.10.1
Operating system
MacOS
Terminal emulator / GUI
Alacritty
Describe the bug
emoji text like
:running_man:
is not rendered like 🏃🏼♂️.Expected behavior
When the cursor is in normal mode, I want to render emoji.
Healthcheck output
============================================================================== render-markdown: require("render-markdown.health").check()
render-markdown.nvim [version] ~
render-markdown.nvim [configuration] ~
render-markdown.nvim [nvim-treesitter] ~
render-markdown.nvim [executables] ~
render-markdown.nvim [conflicts] ~
Plugin configuration
Plugin error log
No Log
Confirmations
Additional information
No response