idea plugin about EditorWindow

Answered

I am trying to write a plugin for a window similar to the Translations Editor, but I encountered an issue where I am unable to create a similar editor window. I want them to be displayed in the middle just like editing Java files. I tried to customize an EditorWindow, but it is a final class. I failed, can anyone teach me?

1
2 comments

i want to create a view in editor area like the translations editor

 

 

0

IDK what plugin “TranslationsEditor” is but you can use UI inspector to investigate how the UI is built: https://plugins.jetbrains.com/docs/intellij/internal-ui-inspector.html

Providing custom editors is done via extension point com.intellij.openapi.fileEditor.FileEditorProvider, see https://plugins.jetbrains.com/docs/intellij/explore-api.html on how to find sample code.

0

Please sign in to leave a comment.