Ensure ipynb is associated with editor (#10055)

This commit is contained in:
Chris LaFreniere
2020-05-08 14:50:48 -07:00
committed by GitHub
parent e4614582cd
commit 5e1978e29f

View File

@@ -17,7 +17,7 @@ import { NotebookInput } from 'sql/workbench/contrib/notebook/browser/models/not
const editorInputFactoryRegistry = Registry.as<IEditorInputFactoryRegistry>(EditorInputExtensions.EditorInputFactories);
export class NotebookEditorInputAssociation implements ILanguageAssociation {
static readonly languages = ['notebook'];
static readonly languages = ['notebook', 'ipynb'];
constructor(@IInstantiationService private readonly instantiationService: IInstantiationService) { }