Register additional editor overrides when adding new notebook file types (#17708)

* Also standardized file extension contributions to always start with a period, and to always do lower case string comparisons for file extensions.
This commit is contained in:
Cory Rivera
2021-11-19 09:14:41 -08:00
committed by GitHub
parent 09666bc4e8
commit 8e04d3992a
8 changed files with 64 additions and 50 deletions

View File

@@ -103,7 +103,7 @@ suite('MainThreadDocumentsAndEditors', () => {
},
new TestPathService(),
<INotebookService>{ // {{SQL CARBON EDIT}}
getSupportedFileExtensions: () => ['ipynb']
getSupportedFileExtensions: () => ['.ipynb']
}
);
});