主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Karol Lewandowski
活动总数
2850
最后的活动
2025年02月06日 11:01
成员加入日期
2022年01月03日 14:12
关注
0 名用户
关注者数
3 名用户
投票数
43
订阅数
1086
活动概览
文章(0)
帖子(0)
评论(1721)
按最近的活动排序
最近的活动
投票数
已编辑于
2023年03月15日 10:37
Hi Ethan, Please use the following method to add the action: toolbarGroup.add(<action to add>, actionManager) // you can also specify constraints, see other add() methods So it is important to pas...
社区
IntelliJ IDEA Open API and Plugin Development
Add action to toolbar for all IntelliJ IDEs
1 票
创建于
2023年03月14日 07:53
Hi, If the file exists already, you should get its PSI and modify the tree, so use PsiElement.add() and related methods. See: https://plugins.jetbrains.com/docs/intellij/modifying-psi.html#maintain...
社区
IntelliJ IDEA Open API and Plugin Development
Write with new line if file exist else create one in Jetbrain plugin development for android studio
1 票
创建于
2023年03月13日 13:24
Hi Ethan, If a group differs between IDEs, then I suggest implementing com.intellij.openapi.actionSystem.impl.ActionConfigurationCustomizer and registering it in the com.intellij.actionConfigurati...
社区
IntelliJ IDEA Open API and Plugin Development
Add action to toolbar for all IntelliJ IDEs
1 票
创建于
2023年03月13日 11:24
Hi, Could you please clarify if I understand the case correctly? You have a custom language for manipulating data in a database. Is it correct? What kind of database is it? SQL database? Any SQL da...
社区
IntelliJ IDEA Open API and Plugin Development
DB conection bar for custom language
1 票
创建于
2023年03月03日 14:10
Hi, FileReferenceSet works by finding files in the same directory as the Java file containing the reference. You can verify it by adding e.g., test/mytest.lst file next to JavaMigrationForClientOn...
社区
IntelliJ IDEA Open API and Plugin Development
Navigate to file in another module by clicking on java String
1 票
已编辑于
2023年03月03日 11:14
Hi, I suggest handling these cases in Block.getSpacing() by ignoring comment elements. If one of the blocks is a comment, take its non-comment sibling and return SpacingBuilder.getSpacing(parent, ...
社区
IntelliJ IDEA Open API and Plugin Development
Formatter - comment settings based on position
1 票
创建于
2023年02月21日 09:59
Hi, Please check https://intellij-support.jetbrains.com/hc/en-us/community/posts/360000018010-How-to-add-window-focus-listener-for-a-custom-tool-window-
社区
IntelliJ IDEA Open API and Plugin Development
Listener active/inactive window status
1 票
已编辑于
2023年02月01日 12:42
Hi Ilya, It sounds like whitespaces are part of your grammar, so I don't understand why you don't want to include them. I would try to create the required custom "whitespace" tokens (not using the ...
社区
IntelliJ IDEA Open API and Plugin Development
Force whitespaces between tokens
1 票
创建于
2023年01月23日 06:23
Hi, The official way of developing plugins is using Gradle:https://plugins.jetbrains.com/docs/intellij/developing-plugins.html We do not have plans for supporting Maven in plugin development.
社区
IntelliJ IDEA Open API and Plugin Development
Is is possible to develop a IntelliJ plugin using maven or package it as maven, will it work?
1 票
已编辑于
2023年01月20日 13:32
Hi, It can be done: programmatically - you can extend com.intellij.openapi.actionSystem.DefaultActionGroup and use addSeparator(). in plugin.xml by creating a wrapper group: <group id="my_g...
社区
IntelliJ IDEA Open API and Plugin Development
Adding an menu item in the context menu when right clicked on a file
1 票
«
第一页
‹
上一页
下一页
›
最后
»