- Notifications
You must be signed in to change notification settings - Fork1.7k
How do i prevent markdown-preview from breaking autocompletion (markdown-plus)?#6743
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
-
E: The issue came from markdown-plus, not blink.cmp as I initially assumed. Updated the discussion title to reflect this. Our AI overlords told me that this is a known problem, Either way, I have When I do Switching to another buffer where I didn't run MarkdownPreview previously everything works fine. I tried all the MarkdownPreview commands (Toggle, Stop, ...) to no avail. My list of plugins. |
BetaWas this translation helpful?Give feedback.
All reactions
You start by trying with a minimal LazyVim repro. Save the following
vim.env.LAZY_STDPATH=".repro"load(vim.fn.system("curl -s https://raw.githubusercontent.com/folke/lazy.nvim/main/bootstrap.lua"))()require("lazy.minit").repro({spec= { {"LazyVim/LazyVim",import="lazyvim.plugins"}, {import="lazyvim.plugins.extras.lang.markdown"},-- add any other plugins here },})
in a file calledrepro.lua and then open Neovim withnvim -u repro.lua some_markdown.md. Trigger markdown-preview with<leader>cp and see what you observe.
From my testing I could not repro. If you also don't observe that behavior with the mentionedrepro.lua, then most probably it's something wit…
Replies: 1 comment 3 replies
-
You start by trying with a minimal LazyVim repro. Save the following vim.env.LAZY_STDPATH=".repro"load(vim.fn.system("curl -s https://raw.githubusercontent.com/folke/lazy.nvim/main/bootstrap.lua"))()require("lazy.minit").repro({spec= { {"LazyVim/LazyVim",import="lazyvim.plugins"}, {import="lazyvim.plugins.extras.lang.markdown"},-- add any other plugins here },}) in a file called From my testing I could not repro. If you also don't observe that behavior with the mentioned |
BetaWas this translation helpful?Give feedback.
All reactions
-
Here's also a screencast with the above Screencast_20251103_224759.webm |
BetaWas this translation helpful?Give feedback.
All reactions
-
Yes, indeed, the issue came from Lessons learned
I think I will just remove the markdown-preview instead of fixing it though, as I rarely use it. Thank you very much for your help! |
BetaWas this translation helpful?Give feedback.
All reactions
-
E: Filed a bug report here:YousefHadder/markdown-plus.nvim#101 |
BetaWas this translation helpful?Give feedback.