-
Notifications
You must be signed in to change notification settings - Fork 492
Closed
Milestone
Description
The custom editor for java class files is not used when opening .class files on a remote window.
I use the remote development extension for WSL.
The glob used as selector for the editor won't match the scheme of remote files.
"selector": [
{
"filenamePattern": "file:/**/*.class"
}
]
Got it working adding a pattern which matches remote files:
"selector": [
{
"filenamePattern": "file:/**/*.class"
},
{
"filenamePattern": "vscode-remote:/**/*.class"
}
]
I'm new to remote development so I have no idea if I should be seeing this scheme in the first place. In any case would be nice to have .class files open the decompiled source by default - currently there is no error message or any indication that something's missing - just the 'cannot open binary file' page.
davis-tang-infocast and nkilders
Metadata
Metadata
Assignees
Labels
No labels