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" }, } },