aboutsummaryrefslogtreecommitdiff
path: root/lua/kickstart/plugins/cmp.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/kickstart/plugins/cmp.lua')
-rw-r--r--lua/kickstart/plugins/cmp.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/lua/kickstart/plugins/cmp.lua b/lua/kickstart/plugins/cmp.lua
index 7ed2ba8..6d893aa 100644
--- a/lua/kickstart/plugins/cmp.lua
+++ b/lua/kickstart/plugins/cmp.lua
@@ -7,9 +7,9 @@ return {
{
'L3MON4D3/LuaSnip',
build = (function()
- -- Build Step is needed for regex support in snippets
- -- This step is not supported in many windows environments
- -- Remove the below condition to re-enable on windows
+ -- Build Step is needed for regex support in snippets.
+ -- This step is not supported in many windows environments.
+ -- Remove the below condition to re-enable on windows.
if vim.fn.has 'win32' == 1 or vim.fn.executable 'make' == 0 then
return
end
@@ -59,7 +59,7 @@ return {
-- Select the [p]revious item
['<C-p>'] = cmp.mapping.select_prev_item(),
- -- scroll the documentation window [b]ack / [f]orward
+ -- Scroll the documentation window [b]ack / [f]orward
['<C-b>'] = cmp.mapping.scroll_docs(-4),
['<C-f>'] = cmp.mapping.scroll_docs(4),
@@ -92,7 +92,7 @@ return {
end
end, { 'i', 's' }),
- -- For more advanced luasnip keymaps (e.g. selecting choice nodes, expansion) see:
+ -- For more advanced Luasnip keymaps (e.g. selecting choice nodes, expansion) see:
-- https://github.com/L3MON4D3/LuaSnip?tab=readme-ov-file#keymaps
},
sources = {