Abrodsky

- Total activity 23
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 5
-
Created Understanding plug-in interactions/security
AnsweredHi, This is more of a why question (low priority) than a how question:Background: I am developing a plug in for intellij that I am hoping to make as resistant as possible to interference from othe... -
Created Null pointer exception on quitting IntelliJ due to plugin cleanup on project close.
AnsweredHello, I am experiencing a Null Pointer exception that appears to be caused when my plug in runs on project close.Error:2024-12-12 11:04:29,693 [ 49583] SEVERE - #c.i.u.c.BoundedTaskExecutor - Ca... -
Created How to avoid a race condition when a file is being opened in the Editor (Intellij)
AnsweredHi,I am trying to solve what appears to be a race condition where FileEditorManagerOpenFileListener#fileOpened is called, the listener closes the file that was just opened using FileEditorManager#c... -
Created Have plugin automatically configure Unit (JavaTestFramework not found)
AnsweredHi,Summary: I am trying to get my plugin to set up JUnit for the user (if it is not set up). However, the code that does this is not exposed in the API.. Background: I am writing a plug-in that i... -
Created Ensuring the clipboard has the same text regardless of flavour
AnsweredHi,I am working on a plugin which adjusts the text being copied out and pasted into an editor. I have succeeded for the most part: plain text is adjusted and copied to the clipboard as intended. ...