-
Notifications
You must be signed in to change notification settings - Fork 412
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bug: lazy.nvim keymap disables, when filetypes are given and other keymaps are used before #1448
Comments
I don't understand what you're saying. I tried your dotfiles and it seems to work as intended. Screencast following Screencast.2024-05-14.21.04.25.webmHere you can see that I uncommented Or am I misunderstanding you in some way? |
The logic of the bug is difficult to explain, but it is simple. If I understand your point well, then you seem to misunderstand it. Let us look at just two keymaps: Let us take a python file for which we have a defined REPL. When I open the file with my LazyVim config, use the On the other hand, If use If no |
Screencast.2024-05-15.14.54.33.webmI just did exactly what you said and it functions as it should. I opened a Python file, first did I just cloned your own dotfiles and use them as Neovim configuration. |
Intriguing. This bug seems to be quite elusive: lazy_keymap_bug.webmI surmise that this bug has to do with the platform. Perhaps, it emerges from a bug in the Neovim API on Windows 10 and the way lazy.nvim interacts with it. What OS did you use (, it looks like a unix derivative)? Anyway, thank you for testing my LazyVim - yarepl setup. Your test proves that the bug does not come from my configuration. |
Yes, I use Linux Mint 21.3. Maybe the problem is with the plugin -- DO NOT change the paths and don't remove the colorscheme
local root = vim.fn.fnamemodify("./.repro", ":p")
-- set stdpaths to use .repro
for _, name in ipairs({ "config", "data", "state", "cache" }) do
vim.env[("XDG_%s_HOME"):format(name:upper())] = root .. "/" .. name
end
-- bootstrap lazy
local lazypath = root .. "/plugins/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", lazypath })
end
vim.opt.runtimepath:prepend(lazypath)
vim.g.mapleader = " "
vim.opt.timeoutlen = 300
-- install plugins
local plugins = {
"folke/tokyonight.nvim",
{ "folke/which-key.nvim", opts = {} },
{
"nvim-telescope/telescope.nvim",
dependencies = { "nvim-lua/plenary.nvim" },
keys = {
{ "<leader>ff", "<cmd>Telescope find_files<cr>", desc = "Find files" },
{ "<leader>fg", "<cmd>Telescope live_grep<cr>", ft = "python", desc = "Live grep" },
},
},
-- add any other plugins here
}
require("lazy").setup(plugins, {
root = root .. "/plugins",
})
vim.cmd.colorscheme("tokyonight")
-- add anything else here Save this as Try to reproduce and report back your findings. |
I managed to reproduce the bug consistently, even for this testing configuration: lazy_keymap_bug2.webm |
After you close |
Ok I can reproduce as well. Before, I was testing with Neovim nightly and could not reproduce it. I switched to Neovim 0.9.5 and can reproduce now. Indeed when you first invoke a keymap which does not have a |
The |
Thank you all for investigating this! Since it seems to work fine on Nightly, I'll close this. |
@folke Is it something that needs to be reported in Neovim upstream or is it something that needs to be taken into account by |
Since this is the first time it came up, it seems not a lot of people are hitting this issue. |
I have tested it with the freshly released Neovim 0.10.0 stable, (using the |
@folke With some hesitation as to how complete my suggestion might be I believe I found the culprit here lazy.nvim/lua/lazy/core/handler/keys.lua Lines 176 to 178 in 0de782a
Changing that to if not keys.ft then
self:_set(keys)
else
self:_set(keys, vim.api.nvim_get_current_buf())
end seems to solve the issue for me locally. Hesitant to make a PR as I mostly went about it with prints in the So, when deleting the keys here lazy.nvim/lua/lazy/core/handler/keys.lua Line 116 in 0de782a
The _del method should re-add the keys but it only seems to do that for keys that have no ft property??
PS: Still that only happens in the first opened buffer. If I do |
Thank you all for looking into this! @dpetka2001 that was indeed part of the problem, but the current code did not cleanup the other lazy ft keymaps. I just pushed a changed this fixes all of this. @kalocsaibotond would be great if you could confirm everytihng is working now! |
Can confirm it's working for me locally with |
I have tried it out the However, when I tried it on my main LazyVim config that is in my dotfiles, Neovim freezes (I used the usual As a context, in my main config, I updated |
That's not how you update |
I tried out the installation via putting
. I also tried out with the content
. |
Not entirely sure, but seems like these lines that got removed -- Create the real buffer-local mapping
if keys.ft then
self:_set(keys, buf)
end are needed. When I add them back the keys work and it doesn't freeze even with your dotfiles that I'm trying. Without this change your dotfiles would indeed freeze. Let's wait for maintainer's input for better insight. |
@folke I believe I might have an idea why this happens lazy.nvim/lua/lazy/core/handler/keys.lua Lines 166 to 170 in 9895337
Line 168 doesn't take into account if |
Great! That was indeed wrong. Just fixed that. |
I just tried with OP's dotfiles and it works now on my end without freezing. It would be great if @kalocsaibotond could confirm on his end as well. Hope I'm not missing something. |
I tested the |
Did you check docs and existing issues?
Neovim version (nvim -v)
0.9.5 stable release
Operating system/version
Windows 10 Pro/10.0.19045 Build 19045
Describe the bug
For a plugin specification, if I specify the filetypes for certain lazy.nvim keymaps and open one specified file, then if I use a plugin related lazy.nvim keymap, all of the other non-used lazy.nvim keymaps for which filetypes are specified become disabled.
Consequently, if the first used plugin related lazy.nvim keymap has filetype specification, then that keymap remains enabled and the rest filetype specified lazy.nvim keymap become disabled throughout the Neovim session.
I discovered this bug while I included yarepl.nvim plugin into my LazyVim setup, and I wanted to specify an "Open REPL Here" keymap to only show up for filetypes for which I defined REPLs.
Steps To Reproduce
ft
key ofLazyKeysSpec
table.Expected Behavior
The operation defined in the rhs of the keymap does not applies.
Repro
The text was updated successfully, but these errors were encountered: