marksman
marksman copied to clipboard
Completions by Marksman dont't work at all in Neovim (macOS)
Hello there!
I try to use Marksman in Neovim 0.9. I've configured cmp and LSP correctly (tested on other filetypes), but marksman don't want to show me the completions from the LSP. And looks like hover doesn't work too.
How I tested:
- I've created two files
test1.md
andtest2.md
; both placed in the same directory with.git
. - Add the header "##header" to
test1
and try to make a link to it intest2
. - All these completions didn't work (
|
—the cursor): 3.1.[[te|]]
3.2.[[test1#h|]]
3.4.[my-link](te|)
3.5.[my-link](test1#h|)
Here is example that shows no completions by LSP (the should be in the first place).
What work:
- In the same time the diagnostics works: when I delete any symbol from correct link I receive the warning about incorrect link (sorry but not sure it's because of
marksman
or other linter I use). - And following by the link by (
vim.lsp.buf.definition()
).