Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Logan May
Total activity
14
Last activity
May 05, 2023 14:16
Member since
September 20, 2022 12:19
Following
0 users
Followed by
0 users
Votes
2
Subscriptions
5
Activity overview
Posts (3)
Comments (4)
Sort by recent activity
Recent activity
Votes
Edited
September 27, 2022 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,...
Community
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 votes
Created
September 27, 2022 01:42
@... The solution Dmitry proposed worked for me. Here's my code: plugin.xml <editorActionHandler action="EditorBackSpace" order="first" implementationClass="org....
Community
IntelliJ IDEA Open API and Plugin Development
How to delegate backspace and Enter button in TypedActionHandler?
0 votes
Created
September 21, 2022 02:28
Yann Cebron That worked! And, the same approach worked for Kotlin using `org.jetbrains.kotlin`. Thank you very much
Community
IntelliJ IDEA Open API and Plugin Development
Get all PSI/Virtual Files within a project
0 votes
Edited
September 20, 2022 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...
Community
IntelliJ IDEA Open API and Plugin Development
Get all PSI/Virtual Files within a project
0 votes