-
Contributing guidelines
Module(s)mini.completion QuestionHi, first I'm really grateful for what you did in the mini community. I like mini ones very much and mostly used them everyday together with several other necessary ones(lspconfig, treesitter etc.) Really really great! At present I tried -- marksman
▒ lspconfig.marksman.setup {
▒ capabilities = capabilities,
▒ on_attach = on_attach,
}
▒
▒ -- zk
▒ require("zk").setup {
▒ picker = "minipick",
▒ lsp = {
▒ -- `config` is passed to `vim.lsp.start_client(config)`
▒ config = {
▒ ╎ cmd = { "zk", "lsp" },
▒ ╎ name = "zk",
▒ ╎ on_attach = on_attach,
▒ },
▒
▒ -- automatically attach buffers in a zk notebook that match the given filetypes
▒ auto_attach = {
▒ enabled = true,
▒ filetypes = { "markdown" },
▒ },
▒ },
▒ } in -- Set up 'mini.completion' LSP part of completion
vim.bo[bufnr].omnifunc = "v:lua.MiniCompletion.completefunc_lsp" But even with all above, the link completion functionality is not available. I'm not sure it is caused by |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Thanks for kind words! I am not really familiar with any of the LSP servers and plugins, but there is a #826. Does it describe similar use case for "link completion" (i.e. pressing |
Beta Was this translation helpful? Give feedback.
Hi thank you for your quick reply. After going through the thread, I think I'm not capable for tweaking these stuff, because I have no idea about all the things between lsp client and server... For the time being I just swtich back to
nvim-cmp
or tryblink.cmp
. Thank you anyway!