-
Notifications
You must be signed in to change notification settings - Fork 104
Open
Labels
questionFurther information is requestedFurther information is requested
Description
Neovim version (nvim -v)
0.12
Neovim distribution
N/A
Description
I've set myself a few custom syntax functions using the built-in vim.cmd(syntax ARGS)
I've tried removing one of them vim.cmd('syntax match Emdash "β" conceal cchar=π’') from my config only to find that it's still active.
I've fiddled with everything, and discovered that disabling render-markdown results in expected behavior, and re-enabling it results in the "Emdash" matchgroup returning from the pale beyond.
What could be the reason for this, and how can I fix it?
Healthcheck output
==============================================================================
render-markdown: β
render-markdown.nvim [versions] ~
- β
OK neovim >= 0.11
- β
OK tree-sitter ABI: 15
- β
OK plugin: 8.12.0
render-markdown.nvim [configuration] ~
- β
OK valid
render-markdown.nvim [tree-sitter markdown] ~
- β
OK parser: installed
- β
OK ABI: 15
- β
OK highlights: ~/.local/share/nvim/site/queries/markdown/highlights.scm
- β
OK highlighter: enabled
render-markdown.nvim [tree-sitter markdown_inline] ~
- β
OK parser: installed
- β
OK ABI: 15
- β
OK highlights: ~/.local/share/nvim/site/queries/markdown_inline/highlights.scm
render-markdown.nvim [tree-sitter html] ~
- β
OK parser: installed
- β
OK ABI: 14
render-markdown.nvim [tree-sitter yaml] ~
- β
OK parser: installed
- β
OK ABI: 15
render-markdown.nvim [icons] ~
- β
OK using: nvim-web-devicons
render-markdown.nvim [conflicts] ~
- β
OK headlines: not installed
- β
OK markview: not installed
- β
OK obsidian: installed but should not conflict
Plugin configuration
vim.g.render_markdown_config = {
render_modes = true,
completions = { lsp = { enabled = true } },
checkbox = {
checked = { icon = "σ°«", scope_highlight = "RenderMarkdownCheckedItem" },
unchecked = { icon = "σ°", scope_highlight = nil },
custom = {
todo = { raw = "[-]", rendered = "σ°₯", highlight = "RenderMarkdownTodo" },
sixth = { raw = "[a]", rendered = "σ°« ", highlight = "RenderMarkdownBullet" },
third = { raw = "[b]", rendered = "σ°« ", highlight = "RenderMarkdownBullet" },
half = { raw = "[o]", rendered = "σ°«
", highlight = "RenderMarkdownBullet" },
twothirds = { raw = "[d]", rendered = "σ°« ", highlight = "RenderMarkdownBullet" },
fivesix = { raw = "[e]", rendered = "σ°« ", highlight = "RenderMarkdownBullet" },
ongoing = { raw = "[@]", rendered = "σ°‘ ", highlight = "AltbgText", scope_highlight = "AltbgText" },
},
},
link = {
footnote = { superscript = false },
wiki = { scope_highlight = "RenderMarkdownWikiLinkText" },
},
bullet = { icons = { "σ°§" }, right_pad = 0 },
pipe_table = {
preset = "round",
alignment_indicator = "β",
},
dash = {
enabled = true,
render_modes = false,
icon = "β",
width = "full",
left_margin = 0,
},
latex = { enabled = false },
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
questionFurther information is requestedFurther information is requested