How do I make obsidian.nvim works flawlessly with completion module?
#2116
-
Contributing guidelines
Module(s)mini.completion Question
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
I am afraid, there is nothing (reasonably manageable) you or 'mini.completion' can do here. The plugin seems to have a dedicated sources for The easiest way to make it work with 'mini.completion' out of the box is through a regular LSP client/server route. There seems to be an in-process LSP server, but it doesn't support relevant completion methods ( There seems to be an open PR just for that: obsidian-nvim/obsidian.nvim#474. It is still a draft, though, and might require polishing (as it, for some reason, forces some options onto the user), but it is the good way forward. |
Beta Was this translation helpful? Give feedback.
-
|
Thank you, that's a quick response :D |
Beta Was this translation helpful? Give feedback.

I am afraid, there is nothing (reasonably manageable) you or 'mini.completion' can do here. The plugin seems to have a dedicated sources for
nvim-cmpandblink.cmp.The easiest way to make it work with 'mini.completion' out of the box is through a regular LSP client/server route. There seems to be an in-process LSP server, but it doesn't support relevant completion methods (
textDocument/completion,completionItem/resolve).There seems to be an open PR just for that: obsidian-nvim/obsidian.nvim#474. It is still a draft, though, and might require polishing (as it, for some reason, forces some options onto the user), but it is the good way forward.