From 9583385c28a87b89dc399bc2caa301a961b01593 Mon Sep 17 00:00:00 2001 From: Rafael Zasas Date: Tue, 12 Mar 2024 18:25:44 +0200 Subject: [PATCH] Change cmp.mapping.scroll_docs to and for scroll up and down respectively --- init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.lua b/init.lua index bf41a005..3c957795 100644 --- a/init.lua +++ b/init.lua @@ -680,8 +680,8 @@ require('lazy').setup({ [''] = cmp.mapping.select_prev_item(), -- scroll [u]p and [d]own the documentation window - [""] = cmp.mapping.scroll_docs(-4), - [""] = cmp.mapping.scroll_docs(4), + [''] = cmp.mapping.scroll_docs(-4), + [''] = cmp.mapping.scroll_docs(4), -- Accept ([y]es) the completion. -- This will auto-import if your LSP supports it.