Skip to content

Commit d09084c

Browse files
authored
fix(keys): fix abbreviation expansion on lazy load (#1219)
1 parent a9b9a4b commit d09084c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lua/lazy/core/handler/keys.lua

+3
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,9 @@ function M:_add(keys)
128128
self:_set(keys, buf)
129129
end
130130

131+
if keys.mode:sub(-1) == 'a' then
132+
lhs = lhs .. '<C-]>'
133+
end
131134
local feed = vim.api.nvim_replace_termcodes("<Ignore>" .. lhs, true, true, true)
132135
-- insert instead of append the lhs
133136
vim.api.nvim_feedkeys(feed, "i", false)

0 commit comments

Comments
 (0)