fix: rename +a which-key group to ai. Fixes #3392

This commit is contained in:
Folke Lemaitre 2024-05-31 08:21:47 +02:00
parent 060f56d6d4
commit a474aea1f9
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040

View file

@ -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 = "<leader>" })
require("which-key").register({ a = { name = "+ai" } }, { prefix = "<leader>" })
end)
end)
end,