Description
- Open extension viewlet
- Right click an extension
- "Configure Extension Settings"
- Settings editor opens with no query prefilled
Broken by e02ccd0, now the editor service is stricter.
So the preferences service was basically doing
editorService.openEditor(input, { query: query })
Now this only works with properties that are in IEditorOptions or ITextEditorOptions, or an instance of EditorOptions. I have SettingsEditorOptions which is a subclass of EditorOptions and am using that everywhere else that the prefs service opens the settings editor. Or I would need the editor service to know about SettingsEditorOptions specifically but I don't want to do that.
In theory this could affect something else but I looked around and don't see other editor options types to worry about.