Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
licheng
看一些东西,学习一些新东西!
Total activity
46
Last activity
June 04, 2024 02:00
Member since
November 26, 2022 09:39
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
11
Activity overview
Posts (11)
Comments (24)
Sort by recent activity
Recent activity
Votes
Created
November 03, 2023 02:06
After I modified the plugin.xml file. The effect is the same as before. <completion.contributor language="JAVA" id="param" order="first" implementationClass="com.aiwan.jorm....
Community
IntelliJ IDEA Open API and Plugin Development
How to use code completion in comments
0 votes
Edited
November 02, 2023 12:57
If I remember correctly, I tried "CompletionContributor.extend()" I just tried again.
Community
IntelliJ IDEA Open API and Plugin Development
How to use code completion in comments
0 votes
Created
November 02, 2023 12:49
When I try the following code. It still didn't work.The effect is the same as the previous picture. import com.intellij.codeInsight.completion.* import com.intellij.codeInsight.lookup.LookupElement...
Community
IntelliJ IDEA Open API and Plugin Development
How to use code completion in comments
0 votes
Created
November 02, 2023 11:52
Hi, I want to type "," or "@" when writing a comment to prompt some code completion. Is there any way to do this? It would be nice to have a simple example. I use the following code to trigger code...
Community
IntelliJ IDEA Open API and Plugin Development
How to use code completion in comments
0 votes
Created
September 08, 2023 06:50
Hi,This is my plugin code package com.aiwan.rust.tool.extend; import com.aiwan.jb.Extend; import com.intellij.openapi.extensions.ExtensionPointName; import java.util.ArrayList; import java.util.Li...
Community
IntelliJ IDEA Open API and Plugin Development
Plugin extension point problem
0 votes
Edited
March 17, 2023 10:39
Thank you very much. I think I have found the solution, here is the new modified code. The comments are from the previous code public List<Dto> getApiElement(@NotNull PsiElement element) { ...
Community
IntelliJ IDEA Open API and Plugin Development
Is there an api method to set the navigation marker based on the file line number?
0 votes
Created
March 17, 2023 09:52
I'm working on a navigation marker, but it seems to be scanned multiple times. I'm not sure if the restrictions I made are working. As shown in the picture So I would like to ask if there is a si...
Community
IntelliJ IDEA Open API and Plugin Development
Is there an api method to set the navigation marker based on the file line number?
0 votes
Created
February 17, 2023 14:04
Hi I found a way to do shift + F10 in the plugin。Thanks for your help. @Overrideprotected void update(@NotNull AnActionEvent e, boolean running) { AnAction run = ActionManager.getInstance().get...
Community
IntelliJ IDEA Open API and Plugin Development
How to run or restart the currently selected run profile from within plugin code?
0 votes
Created
February 17, 2023 09:22
Hi, example https://github.com/licheng1013/restart-app Instructions in this file https://github.com/licheng1013/restart-app/blob/master/src/main/java/com/example/restartapp/action/MyRunAction.java
Community
IntelliJ IDEA Open API and Plugin Development
How to run or restart the currently selected run profile from within plugin code?
0 votes
Created
February 14, 2023 09:55
Hi, I implemented RunAction and registered the shortcut key, but I can't use the shortcut key to start the program in the idea. But the default shortcut key (Shift F10) of idea can be run. The foll...
Community
IntelliJ IDEA Open API and Plugin Development
How to run or restart the currently selected run profile from within plugin code?
0 votes
«
First
‹
Previous
Next
›
Last
»