You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
n ,ff * <Lua 22: ~/.config/nvim/lua/user/plugins/conform.lua:9>
x , * <Cmd>lua require("which-key").show(",", {mode = "v", auto = true})<CR>
n , * <Cmd>lua require("which-key").show(",", {mode = "n", auto = true})<CR>
n ,f * <Lua 59: ~/.local/share/nvim/lazy/telescope.nvim/lua/telescope/builtin/init.lua:500>
In telescope I use the keymap:
local builtin =require("telescope.builtin")
vim.keymap.set("n", "<leader>f", builtin.find_files, {})
The keymap works and shows telescope find_files but wondering why I keep getting the warning, if I remove the keymap the warning is not shown anymore but also no keymap listed in the output of map ,f
n ,ff * <Lua 22: ~/.config/nvim/lua/user/plugins/conform.lua:9>
n ,fÞ * <Nop>
n , * <Cmd>lua require("which-key").show(",", {mode = "n", auto = true})<CR>
x , * <Cmd>lua require("which-key").show(",", {mode = "v", auto = true})<CR>
Instead I see now:
n ,fÞ * <Nop>
in /which-key/keys.lua I see:
-- secret character that will be used to create <nop> mappingslocalsecret="Þ"
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
After running:
:checkhealth which-key
, I get this warning:the output of
map ,f
returns:In
telescope
I use the keymap:The keymap works and shows
telescope find_files
but wondering why I keep getting the warning, if I remove the keymap the warning is not shown anymore but also no keymap listed in the output ofmap ,f
Instead I see now:
in
/which-key/keys.lua
I see:Any ideas?
Beta Was this translation helpful? Give feedback.
All reactions