Anthony

- Total activity 19
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 9
-
Anthony created a post, AnsweredHow to suppress warning messages in the console when running a plugin as command line?
This 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... -
Anthony created a post, AnsweredError encountered executing Gradle task from shell script
I 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... -
Anthony created a post, AnsweredHow can I comment a PsiElement?
I'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... -
Anthony commented, -
Anthony created a post, AnsweredIdentify test file
How 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? -
Anthony created a post, AnsweredHow to obtain line and column number for PsiClass and PsiMethod?
I have an instance of a PsiClass and PsiMethod. How can I obtain the line and column number of these identifiers? -
Anthony created a post, AnsweredHow to update a custom ToolWindow with content from a Listener class?
This 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... -
Anthony created a post, AnsweredHelp in writing unit tests
Hello, 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 ... -
-
Anthony created a post, AnsweredHow to capture the old and new name of renamed identifiers?
I 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...