aravet

- Total activity 64
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 26
-
Created Can we reuse system dialogs: smartCompletion
In the MiniWiki plugin, I want to provide smartcompletion for anchors names.=> I need the same dialog, with the same look and behaviour (Ctrl-Q would be nice), but I would load it with external da... -
Created How can a plugin listen to another plugin's events?
Is there an official (openAPI) way for plugins to communicate.Something like -
Created How do you "install" a LvcsLabelListener?
I want to plug a behaviour on certain Lvcs events. How can I install this listener? -
Created java.lang.ClassNotFoundException:org.jetbrains.idea.tomcat.TomcatManager
I get this error in a project that uses the openAPI, but is not plugin=> I couldn't use the DevKit plugin => I linked every single jar of the IDEA lib directory.(ApplicationImpl.java:375) at com... -
Created new Inspection: detect false utils
This inspection could return many false positives, but I think the real ones cannot be found with any other way/tool.Example:-Before: nothing to detect-MyUtil.zero() is accessed from 2 different cl... -
Created Missing inspection ?
Is there an inspection that detects that in the code below, boolean doDebug = Level1.DEBUG;could be tightened into: boolean doDebug = Level0.DEBUG; -
Created MacOs : jdk = 600M?
(warning: this is a newbie question: I've just purchased my very first Mac. Oh man, what a machine.)AFAIU, the jdk is found on apple developer forum (registration required), BUT you first need to i... -
Created junit runner triggers "Import settings.." dialog once.
Has anybody noticed this new - since 1131 ? - behaviour, when testing plugins? It started happening a few builds ago, and I think it started happening at the same time as Note: - it happens only on... -
Created does it ring a bell: java.lang.SecurityException: Prohibited package name: java.lang
Starting with 1131, or 1136, I can't run tests that use the openapi, and the testFramework anymore.I now get dozens of failing tests with the stacktrace below. Does it ring a bell to you?AFAIK, not... -
Created CaretEvent: how to obtain the typed - special - key ?
While handling public void caretPositionChanged ( CaretEvent i_caretEvent ) , I need to find out the keys, and special keys the user pressed.I checked all around the CaretEvent, the Editor, an...