Anthony
- 活动总数 19
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 9
-
创建于 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... -
创建于 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... -
创建于 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... -
创建于 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? -
创建于 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? -
创建于 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... -
已编辑于 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 ... -
创建于 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...