From 725bf0d00ea0cd1527e1ab008ade6bd2584771f8 Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Wed, 4 Jan 2023 13:05:01 +0100 Subject: [PATCH] feat(which-key): added more group names --- lua/lazyvim/plugins/editor.lua | 2 ++ lua/lazyvim/plugins/ui.lua | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/lua/lazyvim/plugins/editor.lua b/lua/lazyvim/plugins/editor.lua index 256573b1..091b6ceb 100644 --- a/lua/lazyvim/plugins/editor.lua +++ b/lua/lazyvim/plugins/editor.lua @@ -122,6 +122,8 @@ return { ["f"] = { name = "+file" }, ["g"] = { name = "+git" }, ["h"] = { name = "+help" }, + ["n"] = { name = "+noice" }, + ["s"] = { name = "+search" }, ["x"] = { name = "+diagnostics" }, }) end, diff --git a/lua/lazyvim/plugins/ui.lua b/lua/lazyvim/plugins/ui.lua index fdbefdcb..8d69ac3c 100644 --- a/lua/lazyvim/plugins/ui.lua +++ b/lua/lazyvim/plugins/ui.lua @@ -4,11 +4,11 @@ return { "rcarriga/nvim-notify", keys = { { - "nc", + "nd", function() require("notify").dismiss({ silent = true, pending = true }) end, - desc = "Clear all Notifications", + desc = "Delete all Notifications", }, }, config = {