Anthony
- 活动总数 19
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 9
-
Anthony 创建了一个帖子, 已回答How 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 创建了一个帖子, 已回答Error 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 创建了一个帖子, 已回答How 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 进行了评论, -
Anthony 创建了一个帖子, 已回答Identify 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 创建了一个帖子, 已回答How 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 创建了一个帖子, 已回答How 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 创建了一个帖子, 已回答Help 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 创建了一个帖子, 已回答How 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...