-
Notifications
You must be signed in to change notification settings - Fork 411
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
I got the "stack overflow" error when I tried to press <Tab>
during my writing of a markdown file.
#1347
Comments
@nyngwang Do you reproduce the problem with your provided minimal configuration? I can't. |
@hrsh7th I just encountered the same issue. It occurred after editing a cuelang file over a >12-hour period. The errors are triggered by pressing
Deleting the buffer using either Versions: |
Please don't let this fall through, this has been plaguing me for years |
Is there anything I can do to help debug this? I can't reproduce it reliably until I've been working on a project for a couple days without closing neovim. Once it starts it happens every time I press the enter key in insert mode (which is mapped to As a workaround, I've found that using |
then maybe there is some infinite (but very slow) recursion that never resolves? I'm literally just guesstimating, but still |
@hrsh7th Why was this issue closed? It isn't a configuration issue, this is an issue with deeply nested callbacks. Reproducing this error seems to require a buffer to be written to for long periods of time. |
Because no one provides a reproducible configuration. |
Let me see if I can get one together. In the future, don't close issues for this reason. Label them as "needs reproduction" or something. Github issues are helpful for users to see what the status of problems they have are. By closing the issue you are essentially saying that the problem has been solved which isn't true in this case. |
I wasn't able to reproduce the problem on the latest branch. |
No, I will close next too. Please read the pinned issue... |
abno ang puta |
One of R.nvim developers is seeing a "stack overflow" bug that I can't replicate on my side: R-nvim/cmp-r#12 Looking at the commit that seems to be the origin of the problem, the only thing that looks strange to me is lines 74-76 of for k, v in pairs(completion_item) do
self.completion_item[k] = v or self.completion_item[k]
end It seems that if |
FAQ
Announcement
Minimal reproducible full config
Description
I got the "stack overflow" error when I tried to press
<Tab>
during my writing of a markdown file.The full message:
Steps to reproduce
Create a markdown file with the following content, and try to press
<Tab>
at the next line of- [ ] check3:
Expected behavior
No error on pressing tab.
Actual behavior
E5108: Error executing lua: stack overflow
Additional context
No response
The text was updated successfully, but these errors were encountered: