-
Hey folks, New blink.cmp user here trying it out! So far I'm really liking the responsiveness and the fuzzyness! I'm having a bit of trouble troubleshooting custom snippets though. I have them defined what I understand is the default path:
They are in this format, which I understand is one of the standards:
However, they are not showing up in the completion menu: My config snippet is: {
"saghen/blink.cmp",
---@module 'blink.cmp'
---@type blink.cmp.Config
opts = {
keymap = {
preset = "super-tab",
},
completion = {
ghost_text = {
enabled = false,
},
},
},
}, Which should get merged with the LazyVim config here: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/plugins/extras/coding/blink.lua I'd love to see some pointers on how to debug this further. How can I know what is not working here? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
From the documentation: "Currently, only VSCode style snippets are supported, but you may look into Luasnip if you'd like more advanced functionality." The snippet you're providing is not a VSCode style snippet: https://code.visualstudio.com/docs/editor/userdefinedsnippets |
Beta Was this translation helpful? Give feedback.
From the documentation: "Currently, only VSCode style snippets are supported, but you may look into Luasnip if you'd like more advanced functionality."
The snippet you're providing is not a VSCode style snippet: https://code.visualstudio.com/docs/editor/userdefinedsnippets