Sven Reinck
- Total activity 55
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 6
- Subscriptions 11
-
Created Uninstalling plugin breaks IDE
AnsweredI register a file type with my plugin: <fileType name="XSD" implementationClass="com.fluxparticle.xsdvisualizer.XsdFileType" fieldName="INSTAN... -
Edited FileEditorProvider Plugin: Using old code until closing editor
AnsweredHi, my plugin is a FileEditorProvider. I got this feedback from a customer:After activating the licence, The plugin was still asking to get a license (even across restarts). I closed/opened the fil... -
Created Install paid plugin without restart
AnsweredI tried to make my paid plugin dynamic. But after investigating with these instructions...https://plugins.jetbrains.com/docs/intellij/dynamic-plugins.html#troubleshooting I found this in the log fi... -
Created Access Cache for external Resources
AnsweredIntelliJ has the ability to download XML schema for imported namespaces when I select "Fetch external resource". These files are downloaded into a cache folder. Can I somehow access this cache or e... -
Created Split View in Plugin Window
AnsweredI develop a plugin that adds another tab to a FileEditor. When I move another editor into the window of my plugin to create a split... Nothing happens. I created this screenshot for clarity. I drag... -
Created Third-party plugin is not recommended if a built-in plugin exists
AnsweredI am developing a visual XSD editor plugin. The best way to reach my potential customers would be if the plugin was recommended to them so they could try it out. But as it turns out it is not recom... -
Created Plug into the back and forward navigation mechanism
AnsweredI am building a plugin with my own FileEditor for a file type wich is not a TextFileEditor. Still I would like to plug into the back and forward navigation mechanism so I can push places onto the h... -
Created My plugin for XSD files isn't recommended because the file type is already registered
AnsweredI created a visual editor for XSD files as a plugin for the IntelliJ platform. Lately I registered a file type so my plugin would be recommended. I did it by adding this to my plugin.xml: <fileType... -
Created java.lang.IllegalStateException: User data is not supported
AnsweredHi, I am getting this exception when starting IntelliJ with my plugin through runIde and I don't know what it is trying to tell me... The stacktrace has nothing of my code in it but the editorClass... -
Created Retrieve the default editor of the current view
AnsweredI am developing a plugin that creates a second ModelEditor for a text file provided by a ModelEditorProvider. So I got these nice litte tabs on the bottom. Now I want to synchronize these two views...