Skip to content

Commit ff90417

Browse files
committed
fix(keys): buffer-local nop mappings
1 parent 0c1ec52 commit ff90417

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

lua/lazy/core/handler/keys.lua

+7-2
Original file line numberDiff line numberDiff line change
@@ -102,14 +102,19 @@ function M.opts(keys)
102102
return opts
103103
end
104104

105+
---@param keys LazyKeys
106+
function M.is_nop(keys)
107+
return type(keys.rhs) == "string" and (keys.rhs == "" or keys.rhs:lower() == "<nop>")
108+
end
109+
105110
---@param keys LazyKeys
106111
function M:_add(keys)
107112
local lhs = keys.lhs
108113
local opts = M.opts(keys)
109114

110115
---@param buf? number
111116
local function add(buf)
112-
if type(keys.rhs) == "string" and (keys.rhs == "" or keys.rhs:lower() == "<nop>") then
117+
if M.is_nop(keys) then
113118
return self:_set(keys, buf)
114119
end
115120

@@ -147,7 +152,7 @@ function M:_add(keys)
147152
vim.api.nvim_create_autocmd("FileType", {
148153
pattern = keys.ft,
149154
callback = function(event)
150-
if self.active[keys.id] then
155+
if self.active[keys.id] and not M.is_nop(keys) then
151156
add(event.buf)
152157
else
153158
-- Only create the mapping if its managed by lazy

0 commit comments

Comments
 (0)