File tree 1 file changed +7
-2
lines changed
1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -102,14 +102,19 @@ function M.opts(keys)
102
102
return opts
103
103
end
104
104
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
+
105
110
--- @param keys LazyKeys
106
111
function M :_add (keys )
107
112
local lhs = keys .lhs
108
113
local opts = M .opts (keys )
109
114
110
115
--- @param buf ? number
111
116
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
113
118
return self :_set (keys , buf )
114
119
end
115
120
@@ -147,7 +152,7 @@ function M:_add(keys)
147
152
vim .api .nvim_create_autocmd (" FileType" , {
148
153
pattern = keys .ft ,
149
154
callback = function (event )
150
- if self .active [keys .id ] then
155
+ if self .active [keys .id ] and not M . is_nop ( keys ) then
151
156
add (event .buf )
152
157
else
153
158
-- Only create the mapping if its managed by lazy
You can’t perform that action at this time.
0 commit comments