From c8c735243766453be90fa790950f70a1af104b16 Mon Sep 17 00:00:00 2001 From: omri Date: Sat, 12 Oct 2024 18:32:58 +0300 Subject: [PATCH] nvim: update which-key to match spec --- .config/nvim/lua/plugins/which-key.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.config/nvim/lua/plugins/which-key.lua b/.config/nvim/lua/plugins/which-key.lua index 81df5d2..30afbd8 100644 --- a/.config/nvim/lua/plugins/which-key.lua +++ b/.config/nvim/lua/plugins/which-key.lua @@ -5,7 +5,7 @@ return { }, config = function() local wk = require("which-key") - wk.register({ + wk.add({ { "a", group = "actions" }, { "c", group = "terminal" }, { "d", group = "debug" }, @@ -15,7 +15,8 @@ return { { "r", group = "refactoring" }, { "t", group = "telescope" }, { "v", group = "vcs" }, - }, { prefix = "" }) + + }) end, dependencies = { "echasnovski/mini.icons",