diff --git a/README.md b/README.md index 061a4f1a..11778a9a 100644 --- a/README.md +++ b/README.md @@ -506,7 +506,7 @@ MiniDeps.add({ auto_show = false, auto_show_delay_ms = 500, update_delay_ms = 50, - -- whether to use treesitter highlighting for the documentation window, disable if you run into performance issues + -- whether to use treesitter highlighting, disable if you run into performance issues -- WARN: temporary, eventually blink will support regex highlighting treesitter_highlighting = true, }, @@ -523,7 +523,7 @@ MiniDeps.add({ -- which directions to show the window, -- falling back to the next direction when there's not enough space direction_priority = { 'n', 's' }, - -- whether to use treesitter highlighting for the documentation window, disable if you run into performance issues + -- whether to use treesitter highlighting, disable if you run into performance issues -- WARN: temporary, eventually blink will support regex highlighting treesitter_highlighting = true, }, diff --git a/lua/blink/cmp/config.lua b/lua/blink/cmp/config.lua index 88284a82..c82cbe12 100644 --- a/lua/blink/cmp/config.lua +++ b/lua/blink/cmp/config.lua @@ -152,7 +152,7 @@ --- @field auto_show? boolean --- @field auto_show_delay_ms? number Delay before showing the documentation window --- @field update_delay_ms? number Delay before updating the documentation window ---- @field treesitter_highlighting? boolean Whether to use treesitter highlighting for the documentation window, disable if you run into performance issues +--- @field treesitter_highlighting? boolean Whether to use treesitter highlighting, disable if you run into performance issues --- @class blink.cmp.SignatureHelpConfig --- @field min_width? number @@ -163,7 +163,7 @@ --- @field winhighlight? string --- @field scrollbar? boolean --- @field direction_priority? ("n" | "s")[] ---- @field treesitter_highlighting? boolean Whether to use treesitter highlighting for the documentation window, disable if you run into performance issues +--- @field treesitter_highlighting? boolean Whether to use treesitter highlighting, disable if you run into performance issues --- @class GhostTextConfig --- @field enabled? boolean @@ -495,7 +495,7 @@ local config = { auto_show = false, auto_show_delay_ms = 500, update_delay_ms = 50, - -- whether to use treesitter highlighting for the documentation window, disable if you run into performance issues + -- whether to use treesitter highlighting, disable if you run into performance issues -- WARN: temporary, eventually blink will support regex highlighting treesitter_highlighting = true, }, @@ -512,7 +512,7 @@ local config = { -- which directions to show the window, -- falling back to the next direction when there's not enough space direction_priority = { 'n', 's' }, - -- whether to use treesitter highlighting for the documentation window, disable if you run into performance issues + -- whether to use treesitter highlighting, disable if you run into performance issues -- WARN: temporary, eventually blink will support regex highlighting treesitter_highlighting = true, },