@@ -20,7 +20,7 @@ import { editorBackground, editorForeground, resolveColorValue } from 'vs/platfo
20
20
import { IThemeService , registerThemingParticipant } from 'vs/platform/theme/common/themeService' ;
21
21
import { EditorPane } from 'vs/workbench/browser/parts/editor/editorPane' ;
22
22
import { IEditorOpenContext } from 'vs/workbench/common/editor' ;
23
- import { getSimpleCodeEditorWidgetOptions , getSimpleEditorOptions } from 'vs/workbench/contrib/codeEditor/browser/simpleEditorOptions' ;
23
+ import { getSimpleEditorOptions } from 'vs/workbench/contrib/codeEditor/browser/simpleEditorOptions' ;
24
24
import { InteractiveEditorInput } from 'vs/workbench/contrib/interactive/browser/interactiveEditorInput' ;
25
25
import { CodeCellLayoutChangeEvent , IActiveNotebookEditorDelegate , ICellViewModel , INotebookEditorOptions } from 'vs/workbench/contrib/notebook/browser/notebookBrowser' ;
26
26
import { NotebookEditorExtensionsRegistry } from 'vs/workbench/contrib/notebook/browser/notebookEditorExtensions' ;
@@ -52,6 +52,7 @@ import { SuggestController } from 'vs/editor/contrib/suggest/suggestController';
52
52
import { SnippetController2 } from 'vs/editor/contrib/snippet/snippetController2' ;
53
53
import { TabCompletionController } from 'vs/workbench/contrib/snippets/browser/tabCompletion' ;
54
54
import { ModesHoverController } from 'vs/editor/contrib/hover/hover' ;
55
+ import { MarkerController } from 'vs/editor/contrib/gotoError/gotoError' ;
55
56
56
57
const DECORATION_KEY = 'interactiveInputDecoration' ;
57
58
@@ -280,7 +281,8 @@ export class InteractiveEditor extends EditorPane {
280
281
SuggestController . ID ,
281
282
SnippetController2 . ID ,
282
283
TabCompletionController . ID ,
283
- ModesHoverController . ID
284
+ ModesHoverController . ID ,
285
+ MarkerController . ID
284
286
] )
285
287
}
286
288
} ) ;
0 commit comments