Jamie Craane
- Total activity 22
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 7
-
Created Run two instances of IntelliJ of the same version
AnsweredHow can I run two instances of the same IntelliJ version but both have different plugins configured. For example, I want a lightweigt instance with only some basic plugins and a full fledged versio... -
Created Find shortcut of certain action
AnsweredI am developing a plugin and want to implement a rename action for certain elements in the plugin. Ideally I want to re-use the rename shortcut which is configured in the keymap. Is there a way to ... -
Created Live code completion in documentation
AnsweredIs it possible to configure IntelliJ code completion in such a way so it behaves the same as for example the Atom editor for documentation files? I have made a video of this specific behavior: http... -
Created Different line startoffsets from Document
I am writing a plugin which adds some visuals using the Graphics object to the start of a line. I have the following sample code (with line numbers added): 1. public class Test {2. public static... -
Created Position of PsiElement in editor
After searching through the code and forum messages I did not find and answer yet to my problem. Is it possible to find the position (x, y) of a PsiElement in the editor? -
Created Exclude a specific method names from the unused declaration inspection
AnsweredI want to exclude certain method names from the unused declaration inspection. For example: when using the EventBus library in an Android project, we have methods with names like onEvent and onEven... -
Created Display result of Java main runner execution
I am diving in IntelliJ plugin development and I am looking for a way to show the result of a Java main runner execution in an alternative way. For example not showing the output of the program in ...