@@ -12,7 +12,7 @@ import 'vs/css!./notebook';
1212import { IEditorOptions } from 'vs/editor/common/config/editorOptions' ;
1313import { BareFontInfo } from 'vs/editor/common/config/fontInfo' ;
1414import { IConfigurationService } from 'vs/platform/configuration/common/configuration' ;
15- import { IContextKey , IContextKeyService , RawContextKey } from 'vs/platform/contextkey/common/contextkey' ;
15+ import { IContextKey , IContextKeyService } from 'vs/platform/contextkey/common/contextkey' ;
1616import { IEnvironmentService } from 'vs/platform/environment/common/environment' ;
1717import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation' ;
1818import { IStorageService } from 'vs/platform/storage/common/storage' ;
@@ -21,7 +21,7 @@ import { contrastBorder, editorBackground, focusBorder, foreground, textBlockQuo
2121import { IThemeService , registerThemingParticipant } from 'vs/platform/theme/common/themeService' ;
2222import { BaseEditor } from 'vs/workbench/browser/parts/editor/baseEditor' ;
2323import { EditorOptions , IEditorMemento , ICompositeCodeEditor , IEditorCloseEvent } from 'vs/workbench/common/editor' ;
24- import { INotebookEditor , NotebookLayoutInfo , CellState } from 'vs/workbench/contrib/notebook/browser/notebookBrowser' ;
24+ import { INotebookEditor , NotebookLayoutInfo , CellState , NOTEBOOK_EDITOR_FOCUSED } from 'vs/workbench/contrib/notebook/browser/notebookBrowser' ;
2525import { NotebookEditorInput , NotebookEditorModel } from 'vs/workbench/contrib/notebook/browser/notebookEditorInput' ;
2626import { INotebookService } from 'vs/workbench/contrib/notebook/browser/notebookService' ;
2727import { OutputRenderer } from 'vs/workbench/contrib/notebook/browser/view/output/outputRenderer' ;
@@ -45,8 +45,6 @@ import { Range } from 'vs/editor/common/core/range';
4545const $ = DOM . $ ;
4646const NOTEBOOK_EDITOR_VIEW_STATE_PREFERENCE_KEY = 'NotebookEditorViewState' ;
4747
48- export const NOTEBOOK_EDITOR_FOCUSED = new RawContextKey < boolean > ( 'notebookEditorFocused' , false ) ;
49-
5048export class NotebookEditorOptions extends EditorOptions {
5149
5250 readonly cellOptions ?: IResourceEditorInput ;
0 commit comments