From ff1b9952e958b08871a0df60786373ce5a957d60 Mon Sep 17 00:00:00 2001 From: Gustavo Date: Thu, 21 Aug 2025 11:04:48 +0200 Subject: [PATCH] feat: add new groups to which key --- lua/kickstart/plugins/which-key.lua | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lua/kickstart/plugins/which-key.lua b/lua/kickstart/plugins/which-key.lua index 13b1366f..4cbc6853 100644 --- a/lua/kickstart/plugins/which-key.lua +++ b/lua/kickstart/plugins/which-key.lua @@ -47,7 +47,12 @@ return { spec = { { 'f', group = '[F]ind' }, { 't', group = '[T]oggle' }, - { 'd', group = '[D]ebug' }, + { 'D', group = '[D]ebug' }, + { 'd', group = '[D]iagnostic' }, + { 'b', group = '[B]uffer' }, + { 'w', group = '[W]indow' }, + { 'y', group = '[Y]ank' }, + { 'S', group = '[S]ession' }, { 'g', group = 'Git', mode = { 'n', 'v' } }, { 'q', group = 'Quickfix' }, },