主页
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年08月31日 08:29
Hi,I'm not sure about the meaning of:rule ::= item (SEP rule?)Did you mean:rule ::= item (SEP rule)?If so, why do you want to use recursion here? Why not using:rule ::= item (SEP item)*You will hav...
社区
IntelliJ IDEA Open API and Plugin Development
Flattening recursive lists in Grammar Kit: private, inner, upper, left
1 票
创建于
2023年08月08日 10:18
Hi Yuchuan, The language should be SQL. You probably didn’t add a dependency on the com.intellij.database plugin. For more details, see https://plugins.jetbrains.com/docs/intellij/plugin-dependenc...
社区
IntelliJ IDEA Open API and Plugin Development
how to develop intention for sql?
1 票
创建于
2023年08月08日 08:12
It should be registered as an application listener. It can be done programmatically or in plugin.xml. For more details, dee: https://plugins.jetbrains.com/docs/intellij/plugin-listeners.html
社区
IntelliJ IDEA Open API and Plugin Development
Remove a file whenever plugin is removed
1 票
已编辑于
2023年08月08日 06:40
Hi, Try using DynamicPluginListener.beforePluginUnload().
社区
IntelliJ IDEA Open API and Plugin Development
Remove a file whenever plugin is removed
1 票
创建于
2023年08月07日 15:43
Hi, You can use PythonFacetType.getInstance(), so you don’t need to hardcode the “Python” ID. To set SDK, try pythonFacet.setSdk(<required SDK>), see:https://github.com/JetBrains/intellij-communit...
社区
IntelliJ IDEA Open API and Plugin Development
Select python facet for a module
1 票
创建于
2023年08月07日 11:05
Hi, It's hard to understand the problem without the full context. Are you even developing an IntelliJ Platform plugin or a regular Java project? If the latter, I'll move the post to the proper forum.
社区
IntelliJ IDEA Users
Cannot import class even dependency is added and exists in m2/repo
1 票
创建于
2023年08月07日 10:36
Hi, Please try using FacetTypeRegistry.getInstance().getFacetTypes().
社区
IntelliJ IDEA Open API and Plugin Development
Select python facet for a module
1 票
创建于
2023年08月03日 07:01
Hi, I checked the VIRTUAL_FILE only once. That’s why I thought it was working fine. To be honest, I don’t know the reason why it is available only for the first time, and I suggest sticking to the...
社区
IntelliJ IDEA Open API and Plugin Development
Is it possible to get the current directory in CreateFromTemplateActionReplacer?
1 票
创建于
2023年07月25日 08:26
Hi George, User data is not persistent and lives as long as an owner object lives. If you reparse the file, elements are recreated, and the information is lost. I suggest recalculating this data af...
社区
IntelliJ IDEA Open API and Plugin Development
Saving User Data to PsiElement
1 票
创建于
2023年07月04日 13:52
Hi Takeshi, Templates grouping is documented: https://plugins.jetbrains.com/docs/intellij/providing-file-templates.html. You should put your templates to fileTemplates/j2ee. I recommend getting fa...
社区
IntelliJ IDEA Open API and Plugin Development
On what parameter `XXX` refers in `groupDescriptor.addTemplate(FileTemplateDescriptor(XXX))` of IntelliJ IDEA SDK?
1 票
«
第一页
‹
上一页
下一页
›
最后
»