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
{{ message }}
This repository has been archived by the owner on Oct 13, 2021. It is now read-only.
I don't know how to reproduce this issue consistently, but it happens with enough frequency (1-2x per 6-8 hours of programming) that it has become fairly unpleasant to deal with.
It only occurs when a word comes up in the completion, then my entire nvim session hangs like shown below:
It could happen in any type of modifiable buffer, not necessarily just in a fugitive gitcommit buffer as shown above. For me this has happened while I'm working in Python, PHP, Vimscript, markdown, text files. My completion_items are: ['lsp', 'snippet', 'buffers', 'ts',].
When I take a look using top, I see a python process using about 85% CPU on a core:
$ ps -ef | rg python3 shows:
With the offending PID highlighted. Though there are 10 of these same python3 processes as you can see.
I've only been dealing with this bug by using killing that process by sending it sigterm. Then nvim becomes responsive again, always with a - inserted at the position of the cursor in normal mode. When I re-enter insert mode and try to input some characters, each keystroke will cause the following error:
So at this point, I always just quit my nvim session, then restart it.
The text was updated successfully, but these errors were encountered:
I've been having the same problem and thought it was my completion plugin too, but given that I currently use deoplete that should be enough of a hint to tell us with quite some certainty it's not the completion. I think that it's a bug in Ultisnips, although searching trough their bug tracker I don't know which one give that there are quite a lot of bug reports about freezing etc. For me it even had an included nasty memory leak which caused my completely freeze up before OOM kicked in, I solved this by running nvim as: systemd-run --scope -p MemoryMax=10G nvim. I don't know of any real solutions as of yet and no other snippet plugin is on par with ultisnips for me :(
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I don't know how to reproduce this issue consistently, but it happens with enough frequency (1-2x per 6-8 hours of programming) that it has become fairly unpleasant to deal with.
It only occurs when a word comes up in the completion, then my entire nvim session hangs like shown below:
It could happen in any type of modifiable buffer, not necessarily just in a fugitive gitcommit buffer as shown above. For me this has happened while I'm working in Python, PHP, Vimscript, markdown, text files. My
completion_items
are:['lsp', 'snippet', 'buffers', 'ts',]
.When I take a look using
top
, I see a python process using about 85% CPU on a core:$ ps -ef | rg python3
shows:With the offending PID highlighted. Though there are 10 of these same python3 processes as you can see.
I've only been dealing with this bug by using killing that process by sending it sigterm. Then nvim becomes responsive again, always with a
-
inserted at the position of the cursor in normal mode. When I re-enter insert mode and try to input some characters, each keystroke will cause the following error:So at this point, I always just quit my nvim session, then restart it.
The text was updated successfully, but these errors were encountered: