-
-
Notifications
You must be signed in to change notification settings - Fork 370
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
Function completion popup writes remnant artificats to buffer #493
Comments
I remember having fixed something in this regard, but could not find it now (I am on mobile). A test case would be great. See #412 about a workaround, and leave a vote in case you think the default should be changed. |
I ran across this issue today. appeared when I cd into a directory through NERDTree plugin in gvim and opened a few files for editing, both python and plain text. Surprisingly didn't appear in single edition of one py file with usual If someone wants to investigate, maybe it's a starting point. In any case I’ll keep you informed if I can reproduce. |
It happens to me as well but very rarely and I'm not sure if it just happens if something bad happened before and jedi-vim basically "crashed". |
It only started after a recent upgrade, though I don't know what revision I was on and subsequently upgraded to. I am not a Vim ninja when it comes to debugging, so any suggestions on how to help find the issue, I am all ears and would be happy to help. My vimrc is here: https://github.com/nZac/dotfiles/blob/35f97b06b46db8f85a2181df258a67f0a88e87ec/vim/vimrc.symlink if that is helpful. |
I suspect it has something to do with python3 annotations. I encountered On Thu, Nov 12, 2015 at 5:30 PM, Nick Zaccardi [email protected]
|
It seems to happen more and more :/ It's not about python3 annotations, I'm not using them. |
Actually I think I had a typo in my conf - for some sill reason I'd put quotes around my "2" in show_call_signatures. Upon testing a bit more, it seems that |
Strange. 2 should do something completely different and not even touch the viewport (but should change the statusline). |
And for the missing conceiling with |
@dpnova The tutorial in README file of this project does put quotes around the value of |
Please try/test #652 and provide feedback there. |
Usually occurs when using tab completion, for example see below
All over the line.
What happens is once the line is finished editing, a particular argument becomes highlighted (in this case arg3).
Upon first inspection it looks like the line is fine, however upon "selecting the line" (movement to the line in normal mode) the screen changes and above text is replaced in the buffer.
The function being called look something like this:
This isn't a visual bug either, it actually leaves text in the buffer, usually resulting in having to undo/rewrite the line (I catch it because it usually breaks my makefile)
The text was updated successfully, but these errors were encountered: