From a474aea1f9fcf0c7601914b1e53260067f621799 Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Fri, 31 May 2024 08:21:47 +0200 Subject: [PATCH] fix: rename `+a` which-key group to `ai`. Fixes #3392 --- lua/lazyvim/plugins/extras/coding/copilot-chat.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/lazyvim/plugins/extras/coding/copilot-chat.lua b/lua/lazyvim/plugins/extras/coding/copilot-chat.lua index 8cd0e2d1..090ade0c 100644 --- a/lua/lazyvim/plugins/extras/coding/copilot-chat.lua +++ b/lua/lazyvim/plugins/extras/coding/copilot-chat.lua @@ -53,7 +53,7 @@ return { init = function() LazyVim.on_load("which-key.nvim", function() vim.schedule(function() - require("which-key").register({ a = { name = "+CopilotChat (AI)" } }, { prefix = "" }) + require("which-key").register({ a = { name = "+ai" } }, { prefix = "" }) end) end) end,