Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(keys): add mapping rhs as description for temporary lazy mappings #1846

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions lua/lazy/core/handler/keys.lua
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,11 @@ function M:_add(keys)
local lhs = keys.lhs
local opts = M.opts(keys)

local rhs = keys.rhs -- Work-around lua-language-server type inference.
-- Pass string rhs to desc to make it visible before loading the plugin, or we will only see file path to closure
-- below.
opts.desc = opts.desc or type(rhs) == "string" and rhs or nil

---@param buf? number
local function add(buf)
if M.is_nop(keys) then
Expand Down
Loading