-
Notifications
You must be signed in to change notification settings - Fork 177
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: Recursion Detected Error #809
Comments
can't reproduce |
I have the same issue, when this happens when opening a file and scrolling down +50lines. It gets stuck and get After downgrading to v3.10.0 I can say it's resolved and the issue seems to be in v3.11.0 - in more detail: 55fa07f |
did you by any chance map j to something? |
For me, I have "jk" mapped to escape while in insert mode, but that's the only "j" mapping i have
the thing is, this happens with scrolling up as well |
@max397574 you are right, I had the following bindings:
However this never caused an issue before, does this somehow overload the buffer? |
I can reproduce it with a {
"dstein64/nvim-scrollview",
config = function()
require('scrollview').setup({
signs_on_startup = { 'all' }
})
end,
}, which for some reason causing nvim to emit |
I am also having the same issue. |
For me, I use a plugin called
|
I found that actually having |
Apologies if this is me misunderstanding, but I have also experienced this issue when holding down j or k in normal mode and this is how I seem to have solved it. In my case, I had been using: " Old
map j gj
map k gk In my ftplugin script for markdown. When I changed it to: " New
nnoremap j gj
nnoremap k gk The issue seems to have gone away from me in my limited testing. Logically, my old bindings were recursive but they weren't causing me issues. Perhaps by using |
This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 7 days. |
This issue was closed because it has been stalled for 7 days with no activity. |
I'm also having this problem. But I think it started fairly recently, like was mentioned in #809 (comment), though I haven't tried downgrading. I can't seem to get why it happens kinda randomly. Since nowadays, I'm mostly working with Typst, I can confirm that this happens a lot when editing |
Did you check docs and existing issues?
Neovim version (nvim -v)
NVIM v0.10.1
Operating system/version
Sonoma 14.5
Describe the bug
When holding j or k to navigate cursor up or down, after about 20 lines this error occurs over and over again:
"Recursion detected.
Are you manually loading which-key in a keymap?
Use opts.triggers instead.
Please check the docs."
require("which-key").setup({}) local wk = require("which-key") wk.add({ })
Steps To Reproduce
Open any file, hold j or k to scroll towards bottom of page.
Expected Behavior
No error should occur
Health
Log
Repro
The text was updated successfully, but these errors were encountered: