From 92d39e8657cf535d70d9fd4d96640c9ef08e7544 Mon Sep 17 00:00:00 2001 From: GeoDaoyu Date: Mon, 1 Dec 2025 16:47:04 +0800 Subject: [PATCH] fix(util.project): Change project key from 'P' to 'p' in dashboard --- lua/lazyvim/plugins/extras/util/project.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lua/lazyvim/plugins/extras/util/project.lua b/lua/lazyvim/plugins/extras/util/project.lua index f033bd1f..2d74c892 100644 --- a/lua/lazyvim/plugins/extras/util/project.lua +++ b/lua/lazyvim/plugins/extras/util/project.lua @@ -126,7 +126,7 @@ return { "goolord/alpha-nvim", optional = true, opts = function(_, dashboard) - local button = dashboard.button("P", " " .. " Projects (util.project)", pick) + local button = dashboard.button("p", " " .. " Projects (util.project)", pick) button.opts.hl = "AlphaButtons" button.opts.hl_shortcut = "AlphaShortcut" table.insert(dashboard.section.buttons.val, 4, button) @@ -159,7 +159,7 @@ return { action = pick, desc = " Projects (util.project)", icon = " ", - key = "P", + key = "p", } projects.desc = projects.desc .. string.rep(" ", 43 - #projects.desc) @@ -177,7 +177,7 @@ return { action = pick, desc = "Projects (util.project)", icon = " ", - key = "P", + key = "p", }) end, },