From c87673c4b97578d7dd6f14e421486cfa6e008b91 Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Sun, 18 Dec 2022 14:51:34 +0100 Subject: [PATCH] feat(ui): added help for on a plugin --- lua/lazy/view/render.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lua/lazy/view/render.lua b/lua/lazy/view/render.lua index 0b2ae04..51b08c6 100644 --- a/lua/lazy/view/render.lua +++ b/lua/lazy/view/render.lua @@ -145,6 +145,8 @@ function M:help() local View = require("lazy.view") self:append("Help", "LazyH2"):nl():nl() + self:append("You can press "):append("", "LazySpecial"):append(" on a plugin to show its details."):nl():nl() + self:append("Keyboard Shortcuts", "LazyH2"):nl() for _, mode in ipairs(View.modes) do local title = mode.name:sub(1, 1):upper() .. mode.name:sub(2)