Open mmueller2012 opened 2 months ago
Thanks for creating this issue! It looks like you may be using an old version of VS Code, the latest stable release is 1.93.0. Please try upgrading to the latest version and checking whether this issue remains.
Happy Coding!
I have tested it also with the newest insider build (1.94.0-insider / 6e9d8a281003211220a6732ec538a28c483ff78b) and the issue still remains.
Does this issue occur when all extensions are disabled?: Yes
We develop an extension in which an existing tab gets replaced by a webview. We simply store a reference to the existing tab, open a webview and then close the original tab. This has worked fine up to version 1.89.1. On version >= 1.90.2 closing the tab using
vscode.window.tabGroups.close
fails with the exceptionTab close: Invalid tab not found!
. The tab has not been closed in the meantime nor did we get any close notifications for it viavscode.window.tabGroups.onDidChangeTabs
.Steps to Reproduce:
Create an extension with the following function exposed as command:
Tab close: Invalid tab not found!
exception.