Anthony
- Total activity 19
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 9
-
Created How to suppress warning messages in the console when running a plugin as command line?
AnsweredThis is a question about running an IntelliJ plugin as a command line (i.e., headless). I have implemented an ApplicationStarter class, and in my main method, I am printing a Hello World text. In m... -
Created Error encountered executing Gradle task from shell script
AnsweredI created a class that implements "ApplicationStarter" and prints a line of text to the console in the "main" method. My build.gradle file contains the following: plugins { id 'org.jetbrains.int... -
Created How can I comment a PsiElement?
AnsweredI'm building a custom code inspection plugin. To this extent, I extend AbstractBaseJavaLocalInspectionTool. To fix the issue identified by my custom inspection, I created a quick fix class by impl... -
Created Identify test file
AnsweredHow can I know if a specific file that is open in the editor is a unit test file or a non-test (i.e., production) file? -
Created How to obtain line and column number for PsiClass and PsiMethod?
AnsweredI have an instance of a PsiClass and PsiMethod. How can I obtain the line and column number of these identifiers? -
Created How to update a custom ToolWindow with content from a Listener class?
AnsweredThis is my requirement: Based on updates to a file, I want to update the content of a custom tool window with specific information (e.g., the name of the file, path, etc.). To do this, I have imple... -
Edited Help in writing unit tests
AnsweredHello, I'm new to plugin development, and I'm looking for help in writing unit tests for actions & activities. For example, how would I write a unit test for this very simple action (a file picker ... -
Created How to capture the old and new name of renamed identifiers?
AnsweredI am new to plugin development so would really appreciate some help with my question My requirement is to hook into IntelliJ's rename refactoring for all identifiers in the source code. Specificall...