Jupyter Notebook for Intellij Idea

Answered

I want to create plugin for intellij to open jupyter notebook.

when I open .ipynb file in notebook

default editor must converted to Webview(javafx)

then I can able to do it..

please provide support to do it

0
1 comment

Hi! The best way to do this seems to be implement a dedicated FileEditor wich will use JCEF to display web page content. Please note that JavaFX is deprecated and no longer bundled with the default JetBrains Runtime and using JCEF is the recommended approach.

To open IPYNB with the FileEditor created you would also need to registed a corresponding file type and create and register a FileEditorProvider that will create editor instances for the file type.

Hope this helps!

 

0

Please sign in to leave a comment.