Vladimir Schneider
Independent software developer and freelance consultant. Author of Markdown Navigator, Missing In Actions, Git File Case Fixer, Arduino Support, touch-typists-completion-caddy, plugins for JetBrains IDEs.
- Total activity 623
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 4
- Subscriptions 177
-
Created How do I change the plugin name on the JetBrains Plugin Site?
AnsweredI changed the plugin name in the idea-multimarkdown plugin's plugin.xml while leaving the plguin id unchanged. This was done to eliminate name infringment on MultiMarkdown project at the request of... -
Created Is it "legal" to replace the parent PsiElement when rename refactoring a child element?
For myplugin (idea-multimarkdown) on rename of links I replace the parent element with a newly created parent element when the link is renamed. The new parent is taken from createFileFromText(). Th... -
Created Where can I get source to IDEA 15 CE EAP? Refactoring changed from IDEA 14 CE.
The celebration of refactoring working in MultiMarkdown plugin is almost complete. I have the plugin rename refactoring of links/files working from version IDEA CE 13.0 to IDEA CE 14.1. I have quic... -
Created How to allow Rename Refactoring to handle spaces in referencing Elements?
I have implemented references between wiki links in the MultiMarkdown plugin and the file that they are refering to.I can rename the file and all the links refering to it get renamed. Awesome.I can... -
Created How do you make a plugin setting change require a restart?
I have a setting that is only used on start up so the IDEA would need to restart for it to take effect. How do I provide this functionality similar to how the IDEA does it when you make changes tha... -
Created How do you deploy a plugin that depends on javafx? IDEA bundled with JDK does not include native libraries.
I changed the HTML rendering engine in my plugin from JEditorPane to JFXPanel with WebView. It works great BUT IDEA with bundled JDK on the Mac does not include jfxrt.jar and even if I add it to th... -
Created Is the change to scratch files to FileType in the latest releases intentional?
What I am refering to is in the latest releases creating a scratch file and selecting the file type for a plugin results in the accept() call in the editor provider with a FileType set to plain tex... -
Created Icon rendering issues with HTMLEditorKit when Darcula UI theme is selected, Same Icons work fine when Default is the UI theme.
I have spent the better part of the day trying to figure out this icon rendering bug and beginning to suspect that it is something behind the scenes that I am not aware of. Any help will be greatly... -
Created How can I create a standard IDEA view in a JPanel for a custom plugin?
I am displaying HTML generated from Markdown in an editor tab and instead of the plain vanilla text editor I would like to have a standard editor in that tab that the plugin populates with generate... -
Created Is it possible to get TODO list item parsing for a custom language plugin outside of Comments.
I have tried everything to allow TODO parsing outside of comments but the information in the BaseFilterLexer derived class seems to be ignored. No matter what I try, only TODO's in comments are acc...