Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions doc/configuration/reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -585,8 +585,6 @@ sources.providers = {
use_show_condition = true,
-- Whether to show autosnippets in the completion list
show_autosnippets = true,
-- Whether to prefer docTrig placeholders over trig when expanding regTrig snippets
prefer_doc_trig = false,
-- Whether to put the snippet description in the label description
use_label_description = false,
}
Expand Down
9 changes: 4 additions & 5 deletions doc/configuration/snippets.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,7 @@ There's a great introduction to writing custom snippets [in the nvim-scissors re
```lua
{
'saghen/blink.cmp',
version = '1.*',
-- `main` is untested, please open a PR if you've confirmed it works as expected
dependencies = { 'L3MON4D3/LuaSnip', version = 'v2.*' },
dependencies = { 'L3MON4D3/LuaSnip' },
opts = {
snippets = { preset = 'luasnip' },
-- ensure you have the `snippets` source (enabled by default)
Expand All @@ -107,7 +105,7 @@ There's a great introduction to writing custom snippets [in the nvim-scissors re
```lua
{
'saghen/blink.cmp',
dependencies = 'echasnovski/mini.snippets',
dependencies = { 'echasnovski/mini.snippets' },
opts = {
snippets = { preset = 'mini_snippets' },
-- ensure you have the `snippets` source (enabled by default)
Expand All @@ -123,9 +121,10 @@ There's a great introduction to writing custom snippets [in the nvim-scissors re
```lua
{
'saghen/blink.cmp',
dependencies = {'hrsh7th/vim-vsnip', 'https://codeberg.org/FelipeLema/bink-cmp-vsnip.git'},
dependencies = { 'hrsh7th/vim-vsnip', 'https://codeberg.org/FelipeLema/bink-cmp-vsnip.git' },
opts = {
snippets = { preset = 'vsnip' },
-- ensure you have the `snippets` source (enabled by default)
sources = {
default = { 'lsp', 'path', 'snippets', 'buffer' },
},
Expand Down
Loading
Loading