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
* fix bug in 'switchImplIntf':
one couldn't switch from a new file that's not saved on disk
(in vscode it's a file with URI scheme 'untitled')
The previous switching logic depended on document store, which only
knows files that were opened with a 'textDocument/didOpen'
notification. VS Code doesn't send such notifications for unsaved files,
hence the bug. Now switching handled file URIs directly without
dependence on document store, which works for any 'switchImplIntf'
request with a valid URI.
* * refactor switchImplIntf
* add a test to switch from file uri with non-file scheme
0 commit comments