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
-
Edited Implementing RestartableLexer interface in 2019.2 causes exception on document change
AnsweredThe RestartableLexer interface in 2019.2 was changed but the code using it appears to be incomplete and causes exception on document change. The cause is the code in LexerEditorHighlighter passing ... -
Created How to create searchableOptions.xml for plugin?
AnsweredThere is a TraverseUIStarter class in IDEA which will create searchableOptions.xml for configurable classes. If the file is found in plugin's resources under "search/" subdirectory it will enable f... -
Created How to share libraries between unrelated plugins?
I would like to be able to share libraries between plugins without having to provide these through another plugin which includes the jars in its distribution or have the plugins sharing a library n... -
Created How do I share clipboard `DataFlavor` with another instance of the IDE?
AnsweredHow do I share clipboard DataFlavorwith another instance of the IDE? In my plugin I created a data flavour to store link and reference information to accompany the clipboard text. That way if you c... -
Created All forum generated e-mails get errors when trying to forward them to iCloud mail box.
CompletedThis started a few days ago and now happens for every e-mail notification from these forums when the e-mails are forwarded from GMail to my iCloud e-mail: 550 5.7.1 Your message was rejected due to... -
Created How do you implement refactoring.copyHandler for Specific Files?
Unlike the moveFileHandler, refactoring.copyHandler seems to be an all or nothing handler expected to handle all files/directories being copied or none. I am thinking of implementing my copy handle... -
Created If you use the GUI Form Editor you may want this patch
AnsweredI use GUI Form Editor for most of my plugin forms and often copy existing components to create similar ones. All is good up this point, the hassle starts at re-using edited versions bundle property... -
Created Why bother with `@Deprecated` when you change the signature of the API method/constructor?
AnsweredWhy bother with @Deprecated when you change the signature of the API method/constructor? Deprecation is supposed to be a notice to API users that this is going away, not that it is already gone, to... -
Edited Why are did all my intentionAction elements in plugin.xml start showing all red?
AnsweredIn my plugin, sometime after I started using 2019 EAP, intentionActionelements inplugin.xmlstarted showing all red, everything works as before. Is there another way to define intention actions or i... -
Created Is there a way to mark a file extension as BINARY to prevent the IDE from trying to open it even on user error?
AnsweredI want to mark some files like Adobe Illustrator as BINARY never open in the IDE, even due to user error. I copied an existing plugin icon Illustrator file to a new project and in a rush forgot to ...