From 83b0399253d11eb1d748f214c876011b76611e33 Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Wed, 5 Feb 2025 11:18:59 +0000 Subject: [PATCH] Allow both `` and `` for completion selection --- lua/config/plugins/lsp.lua | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/lua/config/plugins/lsp.lua b/lua/config/plugins/lsp.lua index fd59cb1..1ae86be 100644 --- a/lua/config/plugins/lsp.lua +++ b/lua/config/plugins/lsp.lua @@ -1,3 +1,15 @@ +local blinkAcceptKeybind = { + function(cmp) + if cmp.snippet_active() then + return cmp.accept() + else + return cmp.select_and_accept() + end + end, + 'snippet_forward', + 'fallback' +} + return { { "williamboman/mason.nvim", @@ -58,18 +70,8 @@ return { enabled = true, }, keymap = { - -- [""] = { "select_and_accept" }, - [""] = { - function(cmp) - if cmp.snippet_active() then - return cmp.accept() - else - return cmp.select_and_accept() - end - end, - 'snippet_forward', - 'fallback' - }, + [""] = blinkAcceptKeybind, + [""] = blinkAcceptKeybind, [""] = { "show", "show_documentation", "hide_documentation" }, } },