Skip to content

Commit

Permalink
Merge pull request #136896 from rchiodo/rchiodo/interactive_hover
Browse files Browse the repository at this point in the history
Allow hover to work in the interactive window cells
  • Loading branch information
rebornix authored Nov 10, 2021
2 parents 5d7fd67 + 8b7b036 commit 958a5ad
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,12 @@ export class InteractiveEditor extends EditorPane {
cellExecuteToolbar: MenuId.InteractiveCellExecute,
cellExecutePrimary: undefined
},
cellEditorContributions: [],
cellEditorContributions: EditorExtensionsRegistry.getSomeEditorContributions([
SelectionClipboardContributionID,
ContextMenuController.ID,
ModesHoverController.ID,
MarkerController.ID
]),
options: this.#notebookOptions
});

Expand All @@ -270,6 +275,9 @@ export class InteractiveEditor extends EditorPane {
top: INPUT_EDITOR_PADDING,
bottom: INPUT_EDITOR_PADDING
},
hover: {
enabled: true
}
}
}, {
...{
Expand Down

0 comments on commit 958a5ad

Please sign in to comment.