-
Notifications
You must be signed in to change notification settings - Fork 390
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
inverse search hangs when some vim process is stuck #3025
Comments
Thanks. This seems like a relatively rare and particularly edgy edge case. But it is also well described and reproducible. I would expect that 1 second timeout should be more than enough, and as you say, even if it will still feel strange, it may be a viable workaround here? |
Up to you. Another possibility is to just wait for vim to implement async remote_expr or something… hopefully soon. Waiting also has a slight advantage of not having to modify the code again to remove the current "hacky workaround" later. (anecdote: this happens to me in real life once because of a vim process hanging… I've no idea what started the process in the first place because the parent presumably got killed. On the positive side, this doesn't have a compounding effect because somehow a vim process hanging waiting for (unrelated question: what do you do for a living? you seem to be very active here somehow) |
Ok, yes, if you don't mind, then waiting seems like a good option. Please feel free to notify me when an async version is available in case I miss it.
Previously I was a research scientist, today I'm a software engineer. I am quite active, especially at answering issues. It's hard to get the time to do lengthy code improvement and new features these days, though. |
(this is just to track the issue since it doesn't seem particularly fixable at the moment. Although one possible "fix" is to spawn one vim subprocess per server (expensive), or set timeout = 1 (I don't know if there is any side effect, but 1 second is still a long time))
Description
Sometimes, inverse search will hang because of vim/vim#15843 . It's a better idea to be robust against that.
Steps to reproduce
Create a hanging vim process as described in the linked issue
create a normal vim process, and somehow make sure its
v:servername
appears later than the hanging process inserverlist()
try inverse search e.g.
see that the first
remote_expr()
call is stuck and vimtex never gets to try sending to the second process (actually after 600 seconds)Expected behavior
somehow vimtex should just ignore the erroneous state of the first process and proceed to send to the second process?
The text was updated successfully, but these errors were encountered: