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.
- 活动总数 623
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 4
- 订阅数 177
-
创建于 How do I change the plugin name on the JetBrains Plugin Site?
已回答I 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... -
创建于 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... -
创建于 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... -
创建于 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... -
创建于 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... -
创建于 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... -
创建于 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... -
创建于 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... -
创建于 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... -
创建于 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...