Skip to content

Commit ee6716d

Browse files
committed
1 parent 2276432 commit ee6716d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/vs/workbench/contrib/interactive/browser/interactiveEditor.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import { editorBackground, editorForeground, resolveColorValue } from 'vs/platfo
2020
import { IThemeService, registerThemingParticipant } from 'vs/platform/theme/common/themeService';
2121
import { EditorPane } from 'vs/workbench/browser/parts/editor/editorPane';
2222
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';
2424
import { InteractiveEditorInput } from 'vs/workbench/contrib/interactive/browser/interactiveEditorInput';
2525
import { CodeCellLayoutChangeEvent, IActiveNotebookEditorDelegate, ICellViewModel, INotebookEditorOptions } from 'vs/workbench/contrib/notebook/browser/notebookBrowser';
2626
import { NotebookEditorExtensionsRegistry } from 'vs/workbench/contrib/notebook/browser/notebookEditorExtensions';
@@ -52,6 +52,7 @@ import { SuggestController } from 'vs/editor/contrib/suggest/suggestController';
5252
import { SnippetController2 } from 'vs/editor/contrib/snippet/snippetController2';
5353
import { TabCompletionController } from 'vs/workbench/contrib/snippets/browser/tabCompletion';
5454
import { ModesHoverController } from 'vs/editor/contrib/hover/hover';
55+
import { MarkerController } from 'vs/editor/contrib/gotoError/gotoError';
5556

5657
const DECORATION_KEY = 'interactiveInputDecoration';
5758

@@ -280,7 +281,8 @@ export class InteractiveEditor extends EditorPane {
280281
SuggestController.ID,
281282
SnippetController2.ID,
282283
TabCompletionController.ID,
283-
ModesHoverController.ID
284+
ModesHoverController.ID,
285+
MarkerController.ID
284286
])
285287
}
286288
});

0 commit comments

Comments
 (0)