king s
- 活动总数 33
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 2
- 订阅数 11
-
创建于 Is there any JetBrains api to start IntelliJ Profile
已回答It seems JetBrains has another async profile api,Open Source project https://github.com/async-profiler/async-profile but not support Windows, but IntelliJ profile support Windows -
创建于 LanguageTextField setText hang
已回答Please see the code, I have rewritre the setText method.Document document = getDocument(); ((DocumentImpl)document).setAcceptSlashR(true); WriteCommandAction.runWriteCommandAction( ... -
创建于 How to trigger method code completion even i type classname
已回答Because in my plugin, request Is a build-in variable and it should not call new request() . So i make the constructor private.And it has a method for example test(). When I type request and press ... -
已编辑于 CodeCompletion not work after set language of LanguageTextField
已回答Full demo codeimport com.google.common.collect.Lists; import com.intellij.icons.AllIcons; import com.intellij.json.json5.Json5Language; import com.intellij.openapi.project.Project; import com.inte... -
已编辑于 CodeCompletion not execute after set language of LanguageTextField
已回答Please see the following code, if I set PlainTextLanguage.INSTANCE as the language, codeCompletion will work, but if I set Json5Language.INSTANCE, codeCompletion not work. It always show no sugges... -
创建于 How to comfortable with K2 compile
已回答After enable K2 Kotlin Mode, it said that my plugin is not compatible.I am not sure how to comfortable with k2.In my plugin, I had use some build-in kotlin API for example -
创建于 How to execute the java method from text?
已回答PsiFile fileFromText = PsiFileFactory.getInstance(project).createFileFromText(JavaLanguage.INSTANCE, "public class Test {public String aa() {return \"123\";}}"); PsiJavaFile psiJavaFile = (PsiJavaF... -
已编辑于 How to run directly into a select method by code
已回答You can see in 2024.2 EAP5 , there is a function that support run directly into a select method.I want to know the API or the extensions.Thanks very much! https://blog.jetbrains.com/idea/2024/06/in... -
创建于 How to judge PsiType implements java.util.Map
已回答How to judge a psiType is java.util.Map?I mean it or its super type extends java.util.Map or implements java.util.Map