主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Logan May
活动总数
14
最后的活动
2023年05月05日 14:16
成员加入日期
2022年09月20日 12:19
关注
0 名用户
关注者数
0 名用户
投票数
2
订阅数
5
活动概览
帖子(3)
评论(4)
按最近的活动排序
最近的活动
投票数
已编辑于
2022年09月27日 13:16
It turned out that this exception was being thrown when I ran the plugin. The issue was with my plugin. I used: psiElement.replace(newPsiElement) to modify text. Since the PsiElement wasn't synced,...
社区
IntelliJ IDEA Open API and Plugin Development
Why does the BasePlatformTestCase throw an IllegalStateException: Attempt to modify PSI for non-committed Document! on backspace?
0 票
创建于
2022年09月27日 01:42
@... The solution Dmitry proposed worked for me. Here's my code: plugin.xml <editorActionHandler action="EditorBackSpace" order="first" implementationClass="org....
社区
IntelliJ IDEA Open API and Plugin Development
How to delegate backspace and Enter button in TypedActionHandler?
0 票
创建于
2022年09月21日 02:28
Yann Cebron That worked! And, the same approach worked for Kotlin using `org.jetbrains.kotlin`. Thank you very much
社区
IntelliJ IDEA Open API and Plugin Development
Get all PSI/Virtual Files within a project
0 票
已编辑于
2022年09月20日 12:21
What should we import in order to access `JavaFileType` from a test? I have a test file like:``` class MyPluginTest : BasePlatformTestCase() { fun test() { val fileText: String = """pack...
社区
IntelliJ IDEA Open API and Plugin Development
Get all PSI/Virtual Files within a project
0 票