From 83fae84770707679f67615ce726eb43f431f7674 Mon Sep 17 00:00:00 2001 From: Tyler Hallada Date: Tue, 17 Jun 2025 11:21:00 -0400 Subject: [PATCH] Fix blink.cmp super-tab keymaps There's no github issues about this, very confusing, but I found a fix. --- lua/plugins/blink.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lua/plugins/blink.lua b/lua/plugins/blink.lua index a8425e5..c31b410 100644 --- a/lua/plugins/blink.lua +++ b/lua/plugins/blink.lua @@ -1,3 +1,5 @@ +local presets = require("blink.cmp.keymap.presets") + return { "saghen/blink.cmp", dependencies = { @@ -10,8 +12,9 @@ return { show_in_snippet = false, }, }, - -- This started to break and idk why + -- This started to break and idk why, so doing it manually -- keymap = { preset = "super-tab" }, + keymap = presets.get("super-tab"), sources = { -- Add 'avante' to the list default = { "avante", "lsp", "path", "snippets", "buffer" },