Skip to content

Commit c1b062a

Browse files
committed
fix(state): use cached mode. Fixes #787. Closes #789
1 parent 1e4efd8 commit c1b062a

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

lua/which-key/mappings.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ function M.add(mapping, ret, opts)
276276
local modes = mapping.mode or { "n" } --[[@as string|string[] ]]
277277
modes = type(modes) == "string" and vim.split(modes, "") or modes --[[@as string[] ]]
278278
for _, mode in ipairs(modes) do
279-
if mode ~= "v" and mode ~= Util.mapmode(mode) then
279+
if mode ~= "v" and mode ~= Util.mapmode({ mode = mode }) then
280280
M.warn("Invalid mode `" .. mode .. "`", mapping)
281281
end
282282
local m = vim.deepcopy(mapping)

lua/which-key/state.lua

+6-1
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,16 @@ function M.setup()
8989
return Config.defer(ctx)
9090
end
9191

92-
local cooldown = Util.cooldown()
9392
-- this prevents restarting which-key in the same tick
93+
local cooldown = Util.cooldown()
94+
95+
-- cache the mode, since it can change outside of ModeChanged events
96+
Util.mode = vim.api.nvim_get_mode().mode
97+
9498
vim.api.nvim_create_autocmd("ModeChanged", {
9599
group = group,
96100
callback = function(ev)
101+
Util.mode = vim.api.nvim_get_mode().mode
97102
Util.trace("ModeChanged(" .. ev.match .. ")")
98103
local mode = Buf.get()
99104

lua/which-key/util.lua

+5-3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ M.BS = M.t("<bs>")
1717
M.EXIT = M.t("<C-\\><C-n>")
1818
M.LUA_CALLBACK = "\x80\253g"
1919
M.CMD = "\x80\253h"
20+
M.mode = "n"
2021

2122
function M.exit()
2223
vim.api.nvim_feedkeys(M.EXIT, "n", false)
@@ -76,9 +77,10 @@ function M.keys(lhs, opts)
7677
return ret
7778
end
7879

79-
---@param mode? string
80-
function M.mapmode(mode)
81-
mode = mode or vim.api.nvim_get_mode().mode
80+
---@param opts? {mode?: string, cached?: boolean}
81+
function M.mapmode(opts)
82+
opts = opts or {}
83+
local mode = opts.mode or (opts.cached ~= false and M.mode) or vim.api.nvim_get_mode().mode
8284
mode = mode:gsub(M.t("<C-V>"), "v"):gsub(M.t("<C-S>"), "s"):lower()
8385
if mode:sub(1, 2) == "no" then
8486
return "o"

0 commit comments

Comments
 (0)