-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Fix #2984: wrong tab selected after :quit #3170
Conversation
I did a It seems VS Code behavior has changed since this commit and now leads to the sequence feeling right without needing any other behavior. |
I debugged the code some more and I see that |
I was concerned the problem might be caused by the interaction between VS Code Vim and another plugin, but after disabling all other plugins the issue still manifests. |
@rebornix You wrote the original code for this, could you let me know what the intention was here? After reading into ViewColumn it looks to me like it wasn't the right approach, but then I'm confused as to why the issue with selecting the wrong tab only started happening 3 months ago and not earlier. |
@rebornix Is there any way I can help with this or you could help me get this merged? It's a pretty serious and visible bug to have been around for so long. |
Any updates on this? It is EXTREMELY annoying to hit this countless times a day! :( |
@ohjames sorry for late reply, the code change looks good to me. |
Thanks! |
Thanks, guys! |
What this PR does / why we need it:
Fixes #2984, the wrong tab is being selected after
:q
which is very annoying.Which issue(s) this PR fixes
#2984
Special notes for your reviewer:
The previous code (that this PR deleted) seems to be there to work around a bug in VS Code, since the VS Code issue has been fixed the code now leads to this bug.