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
When starting up typescript-language-features 1.881 the context key typescript.isManagedFile is never set. Analyzing the problem led to finding out that the extension fails to find the active typescritpt editor due to this comparison failing for the single open editor:
editor.viewColumn === tab.group.viewColumn;
editor.viewColumn is one and tab.group.ViewColumn is 2, but there is only one editor open.
Steps to Reproduce:
n/a
Additional Information
Operating System: Windows 11
Theia Version: Theia 1.49 master
The text was updated successfully, but these errors were encountered:
tsmaeder
added a commit
to tsmaeder/theia
that referenced
this issue
May 3, 2024
Turns out this problem leads to pretty much all commands from typescript-language-features being disabled, even stuff that is not context dependent like "restart tsserver".
Bug Description:
When starting up typescript-language-features 1.881 the context key
typescript.isManagedFile
is never set. Analyzing the problem led to finding out that the extension fails to find the active typescritpt editor due to this comparison failing for the single open editor:editor.viewColumn
is one andtab.group.ViewColumn
is 2, but there is only one editor open.Steps to Reproduce:
n/a
Additional Information
The text was updated successfully, but these errors were encountered: